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



The AnnRichTextObject Class supports WPF/Silverlight.

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 Class

Syntax

Visual Basic (Declaration) 
Public Class AnnRichTextObject 
   Inherits AnnRectangleObject
   Implements IAnnHeaderIAnnObjectIAnnRectangle 
Visual Basic (Usage)Copy Code
Dim instance As AnnRichTextObject
C# 
public class AnnRichTextObject : AnnRectangleObject, IAnnHeaderIAnnObjectIAnnRectangle  
C++/CLI 
public ref class AnnRichTextObject : public AnnRectangleObject, IAnnHeaderIAnnObjectIAnnRectangle  

Example

For XAML example, refer to AnnGroupObject.

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.Stroke = Colors.Red
   richText.Fill = Colors.Transparent
   richText.Rect = New Rect(100, 100, 100, 100)
   richText.StrokeThickness = 3.0
   richText.Rtf = rtfText
   container.Children.Add(richText)
End Sub
C#Copy Code
private void AnnRichTextObject_AnnRichTextObject(AnnContainer container, string rtfText)
{
   AnnRichTextObject richText = new AnnRichTextObject();
   richText.Stroke = Colors.Red;
   richText.Fill = Colors.Transparent;
   richText.Rect = new Rect(100, 100, 100, 100);
   richText.StrokeThickness = 3.0;
   richText.Rtf = rtfText;
   container.Children.Add(richText);
}
SilverlightCSharpCopy Code
SilverlightVBCopy Code

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 WPF Annotation Objects.

For more information about the rich text annotation object refer to AnnRichTextObject for WPF.

For more information about the automated rich text annotation object, refer to WPF Annotation Objects - Automated Features.

Note: the AnnRichTextObject does not support AnnFixedStateOperations.FontSize.

Inheritance Hierarchy

System.Object
   System.Windows.Threading.DispatcherObject
      System.Windows.DependencyObject
         Leadtools.Windows.Annotations.AnnObject
            Leadtools.Windows.Annotations.AnnRectangleObject
               Leadtools.Windows.Annotations.AnnRichTextObject

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also

AnnRichTextObject requires a Document/Medical product license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features and Unlocking Special LEAD Features.