Error processing SSI file
LEADTOOLS Annotations (Leadtools.Annotations assembly)

Show in webframe

Dispose() Method






Releases the resources used by the AnnObject.
Syntax
public void Dispose()
'Declaration
 
Public Overloads Sub Dispose() 
'Usage
 
Dim instance As AnnObject
 
instance.Dispose()

            

            
public:
void Dispose(); 
Example

This example frees all container resources.

Copy Code  
Imports Leadtools
Imports Leadtools.Annotations
Imports Leadtools.Codecs
Imports Leadtools.WinForms
Imports Leadtools.Drawing

Public Sub AnnObject_Dispose(ByVal container As AnnContainer)
   Do While container.Objects.Count > 0
      Dim obj As AnnObject = container.Objects(0)
      container.Objects.RemoveAt(0)
      obj.Dispose()
   Loop
End Sub
using Leadtools;
using Leadtools.Annotations;
using Leadtools.Codecs;
using Leadtools.WinForms;
using Leadtools.Drawing;

public void AnnObject_Dispose(AnnContainer container)
{
   while(container.Objects.Count > 0)
   {
      AnnObject obj = container.Objects[0];
      container.Objects.RemoveAt(0);
      obj.Dispose();
   }
}
Requirements

Target Platforms

See Also

Reference

AnnObject Class
AnnObject Members
Overload List

Error processing SSI file
(Deprecated, use Leadtools.Annotations.Core instead)