Leadtools.Annotations Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.10.31
AnnPolygonObject Class
See Also  Members   Example 
Leadtools.Annotations Namespace : AnnPolygonObject Class




Defines an annotation polygon object.

Object Model













Syntax

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

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

Inheritance Hierarchy

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

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also

Leadtools.Annotations requires a Document or Medical toolkit license and unlock key. For more information, refer to: Raster Pro/Document/Medical Features