GdPicture.NET.14.API
GdPicture14 Namespace / AnnotationManager Class / Dispose() Method
Example





Dispose() Method
Disposes already used AnnotationManager object completely. All related resources used by this object are released.
Syntax
'Declaration
 
Public Sub Dispose() 
 
Remarks
You can also reuse the AnnotationManager object simply by using the AnnotationManager.Close method and subsequently initialize it from another source.
Example
How to create and dispose of the AnnotationManager object.
Dim annotationManager As AnnotationManager = New AnnotationManager()
If annotationManager.InitFromFile("test.tif") = GdPictureStatus.OK Then
    MessageBox.Show("The number of pages: " + annotationManager.PageCount, "AnnotationManager.Dispose")
Else
    MessageBox.Show("The AnnotationManager can't be properly initialized. Status: " + annotationManager.GetStat().ToString(), "AnnotationManager.Dispose")
End If
annotationManager.Dispose()
See Also