LEADTOOLS Annotations (Leadtools.Annotations assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
AnnObject Class
See Also  Members  
Leadtools.Annotations Namespace : AnnObject Class



The AnnObject Class is available in LEADTOOLS Document and Medical Imaging toolkits.

This is the base class for all annotation objects.

Object Model

AnnObject ClassAnnRectangle StructureAnnBrush ClassAnnContainer ClassAnnFont ClassAnnGroupObject ClassAnnFont ClassAnnPoint StructureAnnPoint StructureAnnPen ClassAnnPoint StructureAnnPoint StructureAnnUnitConverter Class

Syntax

Visual Basic (Declaration) 
<SerializableAttribute()>
Public MustInherit Class AnnObject 
   Inherits AnnDrawable
   Implements ICloneableIDisposableISerializable 
Visual Basic (Usage)Copy Code
Dim instance As AnnObject
C# 
[SerializableAttribute()]
public abstract class AnnObject : AnnDrawable, ICloneableIDisposableISerializable  
C++/CLI 
[SerializableAttribute()]
public ref class AnnObject abstract : public AnnDrawable, ICloneableIDisposableISerializable  

Example

This example displays the rotate angle of an AnnObject.

Visual BasicCopy Code
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
C#Copy Code
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);
   }
}

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.

Inheritance Hierarchy

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also

Leadtools.Annotations requires a Document or Medical toolkit license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features