LEADTOOLS Annotations (Leadtools.Annotations assembly)

AnnObject Class

Show in webframe
Example 





Members 
This is the base class for all annotation objects.
Object Model
Syntax
Remarks

The AnnObject class provides all the basic functionality common to all LEADTOOLS annotation objects.

The AnnObject is an abstract class, you cannot instantiate objects of this class directly.

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

Public Sub AnnObject_AnnObject(ByVal container As AnnContainer)
   For Each obj As AnnObject In container.Objects
      Dim s As String = String.Format("Type: {0}, Name: {1}, Hyperlink: {2}", obj.GetType().Name, obj.Name, obj.Hyperlink)
      MessageBox.Show(s)
   Next obj
End Sub
using Leadtools;
using Leadtools.Annotations;
using Leadtools.Codecs;
using Leadtools.WinForms;
using Leadtools.Drawing;

public void AnnObject_AnnObject(AnnContainer container)
{
   foreach(AnnObject obj in container.Objects)
   {
      string s = string.Format("Type: {0}, Name: {1}, Hyperlink: {2}", obj.GetType().Name, obj.Name, obj.Hyperlink);
      MessageBox.Show(s);
   }
}
Requirements

Target Platforms

See Also

Reference

AnnObject Members
Leadtools.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.