LEADTOOLS Annotations (Leadtools.Annotations assembly)
LEAD Technologies, Inc

AnnRichTextObject Class

Example 





Members 
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
'Declaration
 
<SerializableAttribute()>
Public Class AnnRichTextObject 
   Inherits AnnRectangleObject
   Implements System.ICloneableSystem.IDisposableSystem.Runtime.Serialization.ISerializable 
'Usage
 
Dim instance As AnnRichTextObject
function Leadtools.Annotations.AnnRichTextObject()
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.

Example
 
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
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);
}
Requirements

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

See Also

Reference

AnnRichTextObject Members
Leadtools.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.