'Declaration Public Overrides Sub PrintDoc( _
ByVal docThe document to print.As Vintasoft.Imaging.Pdf.JavaScriptApi.PdfJsDoc, _
ByVal bUIA value indicating whether the User Interface must be shown to the user to obtain printing information and confirm the action.As Boolean, _
ByVal nStartA zero-based index that defines the start of an inclusive range of pages.As System.Int32, _
If nStart and nEnd are not specified, all pages in the document are printed.
If only nStart is specified, the range of pages is the single page specified by nStart.
If nStart and nEnd parameters are used, bUI must be false.
ByVal nEndA zero-based index that defines the end of an inclusive page range.As System.Int32, _
If nStart and nEnd are not specified, all pages in the document are printed.
If only nEnd is specified, the range of a pages is 0 to nEnd.
If nStart and nEnd parameters are used, bUI must be false.
ByVal bSilentA value indicating whether to suppress the cancel dialog box while the document is printing.As Boolean, _
ByVal bShrinkToFitA value indicating whether to shrink the page (if necessary) to fit within the imageable area of the printed page. If false, it is not.As Boolean, _
ByVal bPrintAsImageA value indicating whether to print pages as an image.As Boolean, _
ByVal bReverseA value indicating whether to print from nEnd to nStart.As Boolean, _
ByVal bAnnotationsA value indicating whether annotations are printed.As Boolean _
)
public override void PrintDoc(
Vintasoft.Imaging.Pdf.JavaScriptApi.PdfJsDoc doc,
bool bUI,
System.Int32 nStart,
System.Int32 nEnd,
bool bSilent,
bool bShrinkToFit,
bool bPrintAsImage,
bool bReverse,
bool bAnnotations
)
public: void PrintDoc(
Vintasoft.Imaging.Pdf.JavaScriptApi.PdfJsDoc* doc,
bool bUI,
System.Int32 nStart,
System.Int32 nEnd,
bool bSilent,
bool bShrinkToFit,
bool bPrintAsImage,
bool bReverse,
bool bAnnotations
); override
public:
void PrintDoc(
Vintasoft.Imaging.Pdf.JavaScriptApi.PdfJsDoc^ doc,
bool bUI,
System.Int32 nStart,
System.Int32 nEnd,
bool bSilent,
bool bShrinkToFit,
bool bPrintAsImage,
bool bReverse,
bool bAnnotations
); override
Parameters
- doc
- The document to print.
- bUI
- A value indicating whether the User Interface must be shown to the user to obtain printing information and confirm the action.
- nStart
- A zero-based index that defines the start of an inclusive range of pages.
If nStart and nEnd are not specified, all pages in the document are printed.
If only nStart is specified, the range of pages is the single page specified by nStart.
If nStart and nEnd parameters are used, bUI must be false. - nEnd
- A zero-based index that defines the end of an inclusive page range.
If nStart and nEnd are not specified, all pages in the document are printed.
If only nEnd is specified, the range of a pages is 0 to nEnd.
If nStart and nEnd parameters are used, bUI must be false. - bSilent
- A value indicating whether to suppress the cancel dialog box while the document is printing.
- bShrinkToFit
- A value indicating whether to shrink the page (if necessary) to fit within the imageable area of the printed page. If false, it is not.
- bPrintAsImage
- A value indicating whether to print pages as an image.
- bReverse
- A value indicating whether to print from nEnd to nStart.
- bAnnotations
- A value indicating whether annotations are printed.