GetReportPrintJobStatus

설명

인쇄 작업의 현재 상태를 리턴합니다.

이 메소드는 보고서 작성 도구가 보고서 생성을 완료했는지 여부를 나타냅니다. 이 메소드가 crPrintingCompleted를 리턴한 뒤에는 생성된 보고서 파일을 열고 데이터를 확인할 수 있습니다.

주: 이 메소드는 Windows 전용입니다.

구문

VBScript

reportMgr.GetReportPrintJobStatus 

Perl

$reportMgr->GetReportPrintJobStatus(); 
ID
설명
reportMgr
현재 세션과 연관된 ReportMgr 오브젝트입니다.
Return value
tagPrintJobStatus 열거 상수 중 하나에 해당하는 INT를 리턴합니다.
enum tagPrintJobStatus {
     crPrintingNotInitialized = 0
     crPrintingNotStarted,
     crPrintingInProgress,
     crPrintingCompleted,
     crPrintingFailed,
     crPrintingCancelled,
     crPrintingHalted 
} 

피드백