This class provides support for creating and managing Rich Text annotation objects
[SerializableAttribute()]
public class AnnRichTextObject : AnnRectangleObject
<SerializableAttribute()>
Public Class AnnRichTextObject
Inherits Leadtools.Annotations.AnnRectangleObject
Implements System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
[SerializableAttribute()]
public ref class AnnRichTextObject : public Leadtools.Annotations.AnnRectangleObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
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 (Deprecated).
For more information about the rich text annotation object refer to AnnRichTextObject (Deprecated).
For more information about the automated rich text annotation object, refer to Annotation Objects - Automated Features (Deprecated).
Note: the AnnRichTextObject does not support AnnFixedStateOperations.FontSize.
This example creates a new rich text object.
using Leadtools;
using Leadtools.Annotations;
using Leadtools.Codecs;
using Leadtools.WinForms;
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);
}
Imports Leadtools
Imports Leadtools.Annotations
Imports Leadtools.Codecs
Imports Leadtools.WinForms
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
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET