'Declaration
Public Property RenderGdPictureAnnots As Boolean
public bool RenderGdPictureAnnots {get; set;}
public read-write property RenderGdPictureAnnots: Boolean;
public function get,set RenderGdPictureAnnots : boolean
'Declaration
Public Property RenderGdPictureAnnots As Boolean
public bool RenderGdPictureAnnots {get; set;}
public read-write property RenderGdPictureAnnots: Boolean;
public function get,set RenderGdPictureAnnots : boolean
Likewise, be aware, that this property is only relevant for GdPicture/XMP annotation objects.
'We assume that the GdViewer1 control has been properly integrated. Sub buttonGdPictureAnnotations_Click(ByVal sender As Object, ByVal e As EventArgs) 'Let us say you have designed a button in your GdViewer control with the name "GdPicture Annotations". 'Cliking this button you can see the GdPicture/XMP annotations are drawn or erased within the displayed document. GdViewer1.RenderGdPictureAnnots = Not GdViewer1.RenderGdPictureAnnots End Sub
//We assume that the GdViewer1 control has been properly integrated. void buttonGdPictureAnnotations_Click(object sender, EventArgs e) { //Let us say you have designed a button in your GdViewer control with the name "GdPicture Annotations". //Cliking this button you can see the GdPicture/XMP annotations are drawn or erased within the displayed document. GdViewer1.RenderGdPictureAnnots = !GdViewer1.RenderGdPictureAnnots; }