Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / GcPdfDocument.SaveAsImageDelegate Delegate
The GrapeCity.Documents.Imaging.GcBitmap generated for the page.
The index of the page in a document for which the bitmap was generated.
The index in order, changes from to 0 to the count of pages - 1.

In This Topic
    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 bitmap As GcBitmap, _
       ByVal pageIndex As System.Integer, _
       ByVal index As System.Integer _
    ) 
    public delegate void GcPdfDocument.SaveAsImageDelegate( 
       GcBitmap bitmap,
       System.int pageIndex,
       System.int index
    )

    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