The page number of the page to be printed.
The number of pages left for printing.
Gets or sets a value indicating whether the print job should be canceled. Switching this value to true will subsequently terminate the printing job.





In This Topic
GdPicture14 Namespace / GdPicturePDF.BeforePdfPrintPageEventHandler Delegate

GdPicturePDF.BeforePdfPrintPageEventHandler Delegate

In This Topic
Syntax
'Declaration
 
<GuidAttribute("3FA7C0D4-EE1C-4406-8036-B41F162E09D2")>
Public Delegate Sub GdPicturePDF.BeforePdfPrintPageEventHandler( _
   ByVal Page As Integer, _
   ByVal PageLeft As Integer, _
   ByRef Cancel As Boolean _
) 
[Guid("3FA7C0D4-EE1C-4406-8036-B41F162E09D2")]
public delegate void GdPicturePDF.BeforePdfPrintPageEventHandler( 
   int Page,
   int PageLeft,
   ref bool Cancel
)
public delegate GdPicturePDF.BeforePdfPrintPageEventHandler( 
    Page: Integer;
    PageLeft: Integer;
   var  Cancel: Boolean
);
GuidAttribute("3FA7C0D4-EE1C-4406-8036-B41F162E09D2")
public delegate GdPicturePDF.BeforePdfPrintPageEventHandler( 
   Page : int,
   PageLeft : int,
   Cancel : boolean
)
[Guid("3FA7C0D4-EE1C-4406-8036-B41F162E09D2")]
public: __gc __delegate void GdPicturePDF.BeforePdfPrintPageEventHandler( 
   int Page,
   int PageLeft,
   ref bool Cancel
)
[Guid("3FA7C0D4-EE1C-4406-8036-B41F162E09D2")]
public delegate void GdPicturePDF.BeforePdfPrintPageEventHandler( 
   int Page,
   int PageLeft,
   bool% Cancel
)

Parameters

Page
The page number of the page to be printed.
PageLeft
The number of pages left for printing.
Cancel
Gets or sets a value indicating whether the print job should be canceled. Switching this value to true will subsequently terminate the printing job.
See Also