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



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

This class provides support for creating and managing Rich Text annotation objects

Object Model

AnnRichTextObject ClassAnnRectangle StructureAnnRectangle StructureAnnBrush ClassAnnContainer ClassAnnFont ClassAnnGroupObject ClassAnnFont ClassAnnPoint StructureAnnPoint StructureAnnPen ClassAnnPoint StructureAnnPoint StructureAnnUnitConverter Class

Syntax

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

Example

This example creates a new rich text object.

Visual BasicCopy 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);
}

Remarks

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.

Inheritance Hierarchy

System.Object
   Leadtools.Annotations.AnnDrawable
      Leadtools.Annotations.AnnObject
         Leadtools.Annotations.AnnRectangleObject
            Leadtools.Annotations.AnnRichTextObject

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