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

AnnEllipseObject Class

Example 





Members 
Defines an annotation ellipse object.
Object Model
AnnEllipseObject ClassAnnRectangle StructureAnnRectangle StructureAnnBrush ClassAnnContainer ClassAnnFont ClassAnnGroupObject ClassAnnFont ClassAnnPoint StructureAnnPoint StructureAnnPen ClassAnnPoint StructureAnnPoint StructureAnnUnitConverter Class
Syntax
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.

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

AnnEllipseObject Members
Leadtools.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices

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