Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / GcGraphicsExt Class / DrawPdfPage Method
The graphics to draw on.
The page to draw.
The draw bounds.
Indicates whether to draw annotations.
Indicates whether to draw form fields.
A RenderingCache object that is used to cache objects created during rendering.
Indicates whether the image is generated for printing.
Indicates whether to ignore errors in the PDF content stream during rendering.

In This Topic
    DrawPdfPage Method
    In This Topic
    Draws a PDF page.
    Syntax
    'Declaration
     
    Public Shared Sub DrawPdfPage( _
       ByVal g As GcGraphics, _
       ByVal page As Page, _
       ByVal bounds As System.Drawing.RectangleF, _
       Optional ByVal drawAnnotations As System.Boolean, _
       Optional ByVal drawFormFields As System.Boolean, _
       Optional ByVal renderingCache As RenderingCache, _
       Optional ByVal print As System.Boolean, _
       Optional ByVal ignoreErrors As System.Boolean _
    ) 
    public static void DrawPdfPage( 
       GcGraphics g,
       Page page,
       System.Drawing.RectangleF bounds,
       System.bool drawAnnotations,
       System.bool drawFormFields,
       RenderingCache renderingCache,
       System.bool print,
       System.bool ignoreErrors
    )

    Parameters

    g
    The graphics to draw on.
    page
    The page to draw.
    bounds
    The draw bounds.
    drawAnnotations
    Indicates whether to draw annotations.
    drawFormFields
    Indicates whether to draw form fields.
    renderingCache
    A RenderingCache object that is used to cache objects created during rendering.
    print
    Indicates whether the image is generated for printing.
    ignoreErrors
    Indicates whether to ignore errors in the PDF content stream during rendering.
    See Also