Leadtools.Annotations Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.10.31
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 
Managed Extensions for C++ 
[SerializableAttribute()]
public __gc class AnnRectangleObject : public 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.AnnTextObject
            Leadtools.Annotations.AnnRubberStampObject
            Leadtools.Annotations.AnnRedactionObject
            Leadtools.Annotations.AnnImageObject
            Leadtools.Annotations.AnnHiliteObject
            Leadtools.Annotations.AnnEncryptObject
            Leadtools.Annotations.AnnEllipseObject

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also

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