Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / SaveAsImageOptions.DrawAnnotationFilterCallback Delegate
The document that owns the annotation.
The current page.
The annotation to test.
IN/OUT: Indicates whether to draw the current annotation.

In This Topic
    SaveAsImageOptions.DrawAnnotationFilterCallback Delegate
    In This Topic
    Represents a delegate that defines the method signature for deciding which annotations to draw. .
    Syntax
    'Declaration
     
    Public Delegate Sub SaveAsImageOptions.DrawAnnotationFilterCallback( _
       ByVal doc As GcPdfDocument, _
       ByVal page As Page, _
       ByVal annotation As AnnotationBase, _
       ByRef drawAnnotation As System.Boolean _
    ) 
    public delegate void SaveAsImageOptions.DrawAnnotationFilterCallback( 
       GcPdfDocument doc,
       Page page,
       AnnotationBase annotation,
       ref System.bool drawAnnotation
    )

    Parameters

    doc
    The document that owns the annotation.
    page
    The current page.
    annotation
    The annotation to test.
    drawAnnotation
    IN/OUT: Indicates whether to draw the current annotation.
    See Also