The AnnRichTextObject Class is available in LEADTOOLS Document and Medical Imaging toolkits.
This class provides support for creating and managing Rich Text annotation objectsVisual Basic (Declaration) | |
---|---|
<SerializableAttribute()> Public Class AnnRichTextObject Inherits AnnRectangleObject Implements ICloneable, IDisposable, ISerializable |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As AnnRichTextObject |
C# | |
---|---|
[SerializableAttribute()] public class AnnRichTextObject : AnnRectangleObject, ICloneable, IDisposable, ISerializable |
C++/CLI | |
---|---|
[SerializableAttribute()] public ref class AnnRichTextObject : public AnnRectangleObject, ICloneable, IDisposable, ISerializable |
This example creates a new rich text object.
Visual Basic | Copy Code |
---|---|
Private Sub AnnRichTextObject_AnnRichTextObject(ByVal container As AnnContainer, ByVal rtfText As String) Dim richText As New AnnRichTextObject() richText.Pen = New AnnPen(Color.Red, New AnnLength(3)) richText.Rtf = rtfText richText.Brush = Nothing richText.Bounds = New AnnRectangle(100, 100, 100, 100, AnnUnit.Pixel) container.Objects.Add(richText) End Sub |
C# | Copy Code |
---|---|
private void AnnRichTextObject_AnnRichTextObject(AnnContainer container, string rtfText) { AnnRichTextObject richText = new AnnRichTextObject(); richText.Pen = new AnnPen(Color.Red, new AnnLength(3)); richText.Rtf = rtfText; richText.Brush = null; richText.Bounds = new AnnRectangle(100, 100, 100, 100, AnnUnit.Pixel); container.Objects.Add(richText); } |
The rich text annotation object (AnnRichTextObject) is a rectangle containing text that supports the Rich Text Format (RTF) file format.
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 rich text annotation object refer to AnnRichTextObject.
For more information about the automated rich text annotation object, refer to Annotation Objects - Automated Features.
Note: the AnnRichTextObject does not support AnnFixedStateOperations.FontSize.
System.Object
Leadtools.Annotations.AnnDrawable
Leadtools.Annotations.AnnObject
Leadtools.Annotations.AnnRectangleObject
Leadtools.Annotations.AnnRichTextObject
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7