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

AnnPolylineObject Class

Example 





Members 
Defines an annotation polyline object.
Object Model
AnnPolylineObject ClassAnnRectangle StructureAnnBrush ClassAnnContainer ClassAnnFont ClassAnnGroupObject ClassAnnFont ClassAnnPoint StructureAnnPoint StructureAnnPen ClassAnnPoint StructureAnnPoint StructureAnnUnitConverter Class
Syntax
'Declaration
 
<SerializableAttribute()>
Public Class AnnPolylineObject 
   Inherits AnnObject
   Implements System.ICloneableSystem.IDisposableSystem.Runtime.Serialization.ISerializable 
'Usage
 
Dim instance As AnnPolylineObject
function Leadtools.Annotations.AnnPolylineObject()
Remarks

The polyline object is a simple polyline that contains a collection of AnnPoint points and a pen. For more information about the polyline annotation object refer to AnnPolylineObject. For more information about the automated polyline annotation object, refer to Annotation Objects - Automated Features.

Example
 
Private Sub AnnPolylineObject_AnnPolylineObject(ByVal container As AnnContainer)
   Dim polyline As AnnPolylineObject = New AnnPolylineObject()
   polyline.Points.Add(New AnnPoint(100, 100, AnnUnit.Pixel))
   polyline.Points.Add(New AnnPoint(200, 100, AnnUnit.Pixel))
   polyline.Points.Add(New AnnPoint(200, 200, AnnUnit.Pixel))
   polyline.Points.Add(New AnnPoint(100, 300, AnnUnit.Pixel))
   polyline.Pen = New AnnPen(Color.Red, New AnnLength(1, AnnUnit.Pixel))
   container.Objects.Add(polyline)
End Sub
private void AnnPolylineObject_AnnPolylineObject(AnnContainer container)
{
   AnnPolylineObject polyline = new AnnPolylineObject();
   polyline.Points.Add(new AnnPoint(100, 100, AnnUnit.Pixel));
   polyline.Points.Add(new AnnPoint(200, 100, AnnUnit.Pixel));
   polyline.Points.Add(new AnnPoint(200, 200, AnnUnit.Pixel));
   polyline.Points.Add(new AnnPoint(100, 300, AnnUnit.Pixel));
   polyline.Pen = new AnnPen(Color.Red, new AnnLength(1, AnnUnit.Pixel));
   container.Objects.Add(polyline);
}
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

AnnPolylineObject Members
Leadtools.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices

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