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

AnnCurveObject Class

Example 





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

The curve object is a spline curve that contains a collection of AnnPoint points, a Tension value and an AnnPen pen. For more information about the curve annotation object refer to AnnCurveObject. For more information about the automated curve annotation object, refer to Annotation Objects - Automated Features.

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

AnnCurveObject Members
Leadtools.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices

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