|
|
|
|
|
iDocumentPrinted (Function) Allows you to: - determine whether the user printed the document from the report viewer.
- get detailed information about the print job.
iDestination(iViewer)
iPrint("Text")
iEndPrinting()
IF iDocumentPrinted() = True THEN
Info("You have requested to print the document")
END
iDestination(iViewer)
iPrintReport(MyReport)
arrOutputInfo is array of iOutputInfo
arrOutputInfo = iDocumentPrinted(iListOutput)
FOR EACH OutputInfo OF arrOutputInfo
Trace("----------------------------------------")
Trace("Destination = " + OutputInfo.Destination)
Trace("Printer = " + OutputInfo.Printer)
Trace("FileName = " + OutputInfo.FileName)
Trace("PaperSize = " + OutputInfo.PaperSize)
Trace("PaperWidth = " + OutputInfo.PaperWidth)
Trace("PaperHeight = " + OutputInfo.PaperHeight)
Trace("Orientation = " + OutputInfo.Orientation)
END
Sintaxis
Determining if the user has started a print or export job from the report viewer Ocultar los detalles
<Result> = iDocumentPrinted()
<Result>: Boolean - True if the user requested the print job from the report viewer,
- False otherwise.
Caution: This function does not indicate whether printing has been successful.. If the printer has a hardware problem, the function always returns the same result.
Getting detailed information on the print or export job Ocultar los detalles
<Result> = iDocumentPrinted(<Options>)
<Result>: Array of iOutputInfo Array of iOutputInfo variables containing the different print jobs started from the report viewer. <Options>: Integer constant Type of list box: | | iListOutput | List of the different print or export jobs started from the report viewer. |
Clasificación Lógica de negocio / UI: Código neutro
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|