Leadtools.Annotations Namespace : AnnLineObject Class |
[SerializableAttribute()] public class AnnLineObject : AnnObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Declaration <SerializableAttribute()> Public Class AnnLineObject Inherits AnnObject Implements System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Usage Dim instance As AnnLineObject
public sealed class AnnLineObject : System.ICloneable, IClosable //In WinRT the IDisposable interface is replaced by IClosable, ~Remove~
function Leadtools.Annotations.AnnLineObject()
[SerializableAttribute()] public ref class AnnLineObject : public AnnObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
The line annotation object is a simple line that has a start point, an end point and a pen. For more information about the line annotation object refer to AnnLineObject. For more information about the automated line annotation object, refer to Annotation Objects - Automated Features.
Private Sub AnnLineObject_AnnLineObject(ByVal container As AnnContainer) Dim line As AnnLineObject = New AnnLineObject() line.Pen = New AnnPen(Color.Red, New AnnLength(1, AnnUnit.Pixel)) line.StartPoint = New AnnPoint(100, 200, AnnUnit.Pixel) line.EndPoint = New AnnPoint(400, 600, AnnUnit.Pixel) container.Objects.Add(line) End Sub
private void AnnLineObject_AnnLineObject(AnnContainer container) { AnnLineObject line = new AnnLineObject(); line.Pen = new AnnPen(Color.Red, new AnnLength(1, AnnUnit.Pixel)); line.StartPoint = new AnnPoint(100, 200, AnnUnit.Pixel); line.EndPoint = new AnnPoint(400, 600, AnnUnit.Pixel); container.Objects.Add(line); }
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