Leadtools.Annotations Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
AnnRectangleObject Class
See Also  Members   Example 
Leadtools.Annotations Namespace : AnnRectangleObject Class



Defines an annotation rectangle object.

Object Model














Syntax

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

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.AnnRubberStampObject
            Leadtools.Annotations.AnnTextObject

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also

Leadtools.Annotations requires a Document or Medical toolkit license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features