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



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

Defines an annotation ellipse object.

Object Model

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

Syntax

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

Example

This example creates an ellipse object.

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

Remarks

The ellipse annotation object is a simple ellipse defined by a bounding rectangle, a pen and a brush.

For more information about the ellipse annotation object refer to AnnEllipseObject. For more information about the automated ellipse annotation object, refer to Annotation Objects - Automated Features.

Inheritance Hierarchy

System.Object
   Leadtools.Annotations.AnnDrawable
      Leadtools.Annotations.AnnObject
         Leadtools.Annotations.AnnRectangleObject
            Leadtools.Annotations.AnnEllipseObject

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