←Select platform

AnnLineObject Class

Summary

Defines an annotation line object.

Syntax

C#
VB
C++
[SerializableAttribute()] 
public class AnnLineObject : AnnObject 
  
<SerializableAttribute()> 
Public Class AnnLineObject  
   Inherits Leadtools.Annotations.AnnObject 
   Implements System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable  
[SerializableAttribute()] 
public ref class AnnLineObject : public Leadtools.Annotations.AnnObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable   

Remarks

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 (Deprecated). For more information about the automated line annotation object, refer to Annotation Objects - Automated Features (Deprecated).

Example

This example creates a new line object from 100, 200 to 400, 600 pixels with red pen and then adds it to a container.

C#
VB
using Leadtools; 
using Leadtools.Annotations; 
using Leadtools.Codecs; 
using Leadtools.WinForms; 
 
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); 
} 
Imports Leadtools 
Imports Leadtools.Annotations 
Imports Leadtools.Codecs 
Imports Leadtools.WinForms 
 
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 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations Assembly