Leadtools.Annotations Namespace : AnnTextObject Class |
[SerializableAttribute()] public class AnnTextObject : AnnRectangleObject, IAnnTextObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Declaration <SerializableAttribute()> Public Class AnnTextObject Inherits AnnRectangleObject Implements IAnnTextObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Usage Dim instance As AnnTextObject
public sealed class AnnTextObject : IAnnTextObject, System.ICloneable, IClosable //In WinRT the IDisposable interface is replaced by IClosable, ~Remove~
function Leadtools.Annotations.AnnTextObject()
[SerializableAttribute()] public ref class AnnTextObject : public AnnRectangleObject, IAnnTextObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
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.
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
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); }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2