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



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

This class provides support for creating and managing Text annotation objects

Object Model

AnnTextObject ClassAnnRectangle StructureAnnRectangle StructureAnnBrush ClassAnnContainer ClassAnnLength StructureAnnFont ClassAnnGroupObject ClassAnnFont ClassAnnPoint StructureAnnPoint StructureAnnPen ClassAnnPoint StructureAnnPoint StructureAnnUnitConverter Class

Syntax

Visual Basic (Declaration) 
<SerializableAttribute()>
Public Class AnnTextObject 
   Inherits AnnRectangleObject
   Implements IAnnTextObjectICloneableIDisposableISerializable 
Visual Basic (Usage)Copy Code
Dim instance As AnnTextObject
C++/CLI 
[SerializableAttribute()]
public ref class AnnTextObject : public AnnRectangleObject, IAnnTextObjectICloneableIDisposableISerializable  

Example

This example creates a new text object.

Visual BasicCopy Code
Private Sub AnnTextObject_AnnTextObject(ByVal container As AnnContainer, ByVal textString As String)
   Dim text As AnnTextObject = New AnnTextObject()
   text.Pen = New AnnPen(Color.Red, New AnnLength(3))
   text.Text = textString
   text.Brush = Nothing
   text.Font = New AnnFont("Arial", New AnnLength(10, AnnUnit.Point), FontStyle.Regular)
   text.EdgeMargin = AnnLength.Empty
   text.Alignment = StringAlignment.Center
   text.LineAlignment = StringAlignment.Center
   text.TextRotate = AnnTextRotate.Rotate0
   text.Bounds = New AnnRectangle(100, 100, 100, 100, AnnUnit.Pixel)
   container.Objects.Add(text)
End Sub
C#Copy Code
private void AnnTextObject_AnnTextObject(AnnContainer container, string textString)
{
   AnnTextObject text = new AnnTextObject();
   text.Pen = new AnnPen(Color.Red, new AnnLength(3));
   text.Text = textString;
   text.Brush = null;
   text.Font = new AnnFont("Arial", new AnnLength(10, AnnUnit.Point), FontStyle.Regular);
   text.EdgeMargin = AnnLength.Empty;
   text.Alignment = StringAlignment.Center;
   text.LineAlignment = StringAlignment.Center;
   text.TextRotate = AnnTextRotate.Rotate0;
   text.Bounds = new AnnRectangle(100, 100, 100, 100, AnnUnit.Pixel);
   container.Objects.Add(text);
}

Remarks

The text annotation object is a text string within a bounding rectangle. This class supports a pen and brush, that may be used on the bounding rectangle, if needed.
For more information, refer to Using Text in Annotation Object. For more information about the text annotation object refer to AnnTextObject. For more information about the automated text annotation object, refer to Annotation Objects - Automated Features.

Inheritance Hierarchy

System.Object
   Leadtools.Annotations.AnnDrawable
      Leadtools.Annotations.AnnObject
         Leadtools.Annotations.AnnRectangleObject
            Leadtools.Annotations.AnnTextObject
               Leadtools.Annotations.AnnButtonObject
               Leadtools.Annotations.AnnNoteObject
               Leadtools.Annotations.AnnStampObject
               Leadtools.Annotations.AnnTextPointerObject

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