GcPdfDocument.SaveAsImageDelegate Delegate
In This Topic
Defines the method signature called for each page when
GcPdfDocument.SaveAsImage is called.
Syntax
'Declaration
Public Delegate Sub GcPdfDocument.SaveAsImageDelegate( _
ByVal As GcBitmap, _
ByVal As System.Integer, _
ByVal As System.Integer _
)
public delegate void GcPdfDocument.SaveAsImageDelegate(
GcBitmap ,
System.int ,
System.int
)
Parameters
- bitmap
- The GrapeCity.Documents.Imaging.GcBitmap generated for the page.
- pageIndex
- The index of the page in a document for which the bitmap was generated.
- index
- The index in order, changes from to 0 to the count of pages - 1.
See Also