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

AnnPolygonObject Class

Example 





Members 
Defines an annotation polygon object.
Object Model
AnnPolygonObject ClassAnnRectangle StructureAnnBrush ClassAnnContainer ClassAnnFont ClassAnnGroupObject ClassAnnFont ClassAnnPoint StructureAnnPoint StructureAnnPen ClassAnnPoint StructureAnnPoint StructureAnnUnitConverter Class
Syntax
Remarks

The polygon object is a simple polygon that contains a collection of AnnPoint points, a AnnPen pen and a AnnBrush brush. The polygon can be Closed or not, and can also have a certain FillMode. For an illustration of the different fill modes, refer to Illustration of the Polygon Fill Mode for Annotations.

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

Example
 
Private Sub AnnPolygonObject_AnnPolygonObject(ByVal container As AnnContainer)
   Dim polygon As AnnPolygonObject = New AnnPolygonObject()
   polygon.Points.Add(New AnnPoint(100, 100, AnnUnit.Pixel))
   polygon.Points.Add(New AnnPoint(200, 100, AnnUnit.Pixel))
   polygon.Points.Add(New AnnPoint(200, 200, AnnUnit.Pixel))
   polygon.Points.Add(New AnnPoint(100, 300, AnnUnit.Pixel))
   polygon.Pen = New AnnPen(Color.Red, New AnnLength(1, AnnUnit.Pixel))
   polygon.Brush = New AnnSolidBrush(Color.White)
   polygon.FillMode = FillMode.Alternate
   polygon.Closed = True
   container.Objects.Add(polygon)
End Sub
private void AnnPolygonObject_AnnPolygonObject(AnnContainer container)
{
   AnnPolygonObject polygon = new AnnPolygonObject();
   polygon.Points.Add(new AnnPoint(100, 100, AnnUnit.Pixel));
   polygon.Points.Add(new AnnPoint(200, 100, AnnUnit.Pixel));
   polygon.Points.Add(new AnnPoint(200, 200, AnnUnit.Pixel));
   polygon.Points.Add(new AnnPoint(100, 300, AnnUnit.Pixel));
   polygon.Pen = new AnnPen(Color.Red, new AnnLength(1, AnnUnit.Pixel));
   polygon.Brush = new AnnSolidBrush(Color.White);
   polygon.FillMode = FillMode.Alternate;
   polygon.Closed = true;
   container.Objects.Add(polygon);
}
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

AnnPolygonObject Members
Leadtools.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices

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