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



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

Defines an annotation polygon object.

Object Model

AnnPolygonObject ClassAnnRectangle StructureAnnBrush ClassAnnContainer ClassAnnFont ClassAnnGroupObject ClassAnnFont ClassAnnPoint StructureAnnPoint StructureAnnPen ClassAnnPoint StructureAnnPoint StructureAnnUnitConverter Class

Syntax

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

Example

This example creates a new closed polygon object with 4 points.

Visual BasicCopy 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);
}

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 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.

Inheritance Hierarchy

System.Object
   Leadtools.Annotations.AnnDrawable
      Leadtools.Annotations.AnnObject
         Leadtools.Annotations.AnnPolylineObject
            Leadtools.Annotations.AnnPolygonObject
               Leadtools.Annotations.AnnClosedCurveObject
               Leadtools.Annotations.AnnFreehandHotspotObject

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