Leadtools.Windows.Annotations Namespace : AnnRichTextObject Class |
public class AnnRichTextObject : AnnRectangleObject, IAnnHeader, IAnnObject, IAnnRectangle
'Declaration Public Class AnnRichTextObject Inherits AnnRectangleObject Implements IAnnHeader, IAnnObject, IAnnRectangle
'Usage Dim instance As AnnRichTextObject
public sealed class AnnRichTextObject : IAnnHeader, IAnnObject, IAnnRectangle
function Leadtools.Windows.Annotations.AnnRichTextObject()
public ref class AnnRichTextObject : public AnnRectangleObject, IAnnHeader, IAnnObject, IAnnRectangle
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.
For XAML example, refer to AnnGroupObject.
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
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); }
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