Click or drag to resize

Doc_print_callback Delegate

Prints all or a specific number of pages of the document.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public delegate void Doc_print_callback(
	IPDF_JSPLATFORM pThis,
	bool bUI,
	int nStart,
	int nEnd,
	bool bSilent,
	bool bShrinkToFit,
	bool bPrintAsImage,
	bool bReverse,
	bool bAnnotations
)

Parameters

pThis  IPDF_JSPLATFORM
Pointer to the interface structure itself.
bUI  Boolean
If true, will cause a UI to be presented to the user to obtain printing information and confirm the action.
nStart  Int32
A 0-based index that defines the start of an inclusive range of pages.
nEnd  Int32
A 0-based index that defines the end of an inclusive page range.
bSilent  Boolean
If true, suppresses the cancel dialog box while the document is printing. The default is false.
bShrinkToFit  Boolean
If true, the page is shrunk (if necessary) to fit within the imageable area of the printed page.
bPrintAsImage  Boolean
If true, print pages as an image.
bReverse  Boolean
If true, print from nEnd to nStart.
bAnnotations  Boolean
If true (the default), annotations are printed.
Remarks
Required: Yes.
See Also