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



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

Defines an annotation rectangle object.

Object Model

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

Syntax

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

Example

This example creates a new rectangle object with top, left at 100, 200, width, height of 400, 600 pixels, a red pen and a white brush and then adds it to a container.

Visual BasicCopy Code
Private Sub AnnRectangleObject_AnnRectangleObject(ByVal container As AnnContainer)
   Dim rect As AnnRectangleObject = New AnnRectangleObject()
   rect.Pen = New AnnPen(Color.Red, New AnnLength(1, AnnUnit.Pixel))
   rect.Brush = New AnnSolidBrush(Color.White)
   rect.Bounds = New AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel)
   container.Objects.Add(rect)
End Sub
C#Copy Code
private void AnnRectangleObject_AnnRectangleObject(AnnContainer container)
{
   AnnRectangleObject rect = new AnnRectangleObject();
   rect.Pen = new AnnPen(Color.Red, new AnnLength(1, AnnUnit.Pixel));
   rect.Brush = new AnnSolidBrush(Color.White);
   rect.Bounds = new AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel);
   container.Objects.Add(rect);
}

Remarks

The rectangle annotation object is a simple rectangle that has a bounding rectangle, a pen and a brush. For more information about the rectangle annotation object refer to AnnRectangleObject. For more information about the automated rectangle annotation object, refer to Annotation Objects - Automated Features.

Inheritance Hierarchy

System.Object
   Leadtools.Annotations.AnnDrawable
      Leadtools.Annotations.AnnObject
         Leadtools.Annotations.AnnRectangleObject
            Leadtools.Annotations.AnnEllipseObject
            Leadtools.Annotations.AnnEncryptObject
            Leadtools.Annotations.AnnHiliteObject
            Leadtools.Annotations.AnnImageObject
            Leadtools.Annotations.AnnRedactionObject
            Leadtools.Annotations.AnnRichTextObject
            Leadtools.Annotations.AnnRubberStampObject
            Leadtools.Annotations.AnnTextObject

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