The AnnPolygonObject Class is available in LEADTOOLS Document and Medical Imaging toolkits.
Defines an annotation polygon object.Visual Basic (Declaration) | |
---|---|
<SerializableAttribute()> Public Class AnnPolygonObject Inherits AnnPolylineObject Implements ICloneable, IDisposable, ISerializable |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As AnnPolygonObject |
C# | |
---|---|
[SerializableAttribute()] public class AnnPolygonObject : AnnPolylineObject, ICloneable, IDisposable, ISerializable |
C++/CLI | |
---|---|
[SerializableAttribute()] public ref class AnnPolygonObject : public AnnPolylineObject, ICloneable, IDisposable, ISerializable |
This example creates a new closed polygon object with 4 points.
Visual Basic | Copy Code |
---|---|
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 |
C# | Copy Code |
---|---|
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); } |
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 AnnPolygonObject.Closed or not, and can also have a certain AnnPolygonObject.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.
System.Object
Leadtools.Annotations.AnnDrawable
Leadtools.Annotations.AnnObject
Leadtools.Annotations.AnnPolylineObject
Leadtools.Annotations.AnnPolygonObject
Leadtools.Annotations.AnnClosedCurveObject
Leadtools.Annotations.AnnFreehandHotspotObject
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7