LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly)
LEAD Technologies, Inc

AnnLineObject Class

Example 





Members 
Defines an annotation line object. .NET support Silverlight support
Object Model
AnnLineObject ClassAnnBrush ClassAnnBrush Class
Syntax
public class AnnLineObject : AnnObject, IAnnHeaderIAnnLineIAnnObject  
'Declaration
 
Public Class AnnLineObject 
   Inherits AnnObject
   Implements IAnnHeaderIAnnLineIAnnObject 
'Usage
 
Dim instance As AnnLineObject
public sealed class AnnLineObject : IAnnHeaderIAnnLineIAnnObject  
function Leadtools.Windows.Annotations.AnnLineObject()
public ref class AnnLineObject : public AnnObject, IAnnHeaderIAnnLineIAnnObject  
Remarks

The line annotation object is a simple line that has a start point, an end point and a stroke. For more information about the line annotation object refer to AnnLineObject for WPF. For more information about the automated line annotation object, refer to WPF Annotation Objects - Automated Features.

Example

For XAML example, refer to AnnGroupObject.

Copy CodeCopy Code  
Private Sub AnnLineObject_AnnLineObject(ByVal container As AnnContainer)
   Dim line As AnnLineObject = New AnnLineObject()
   line.Stroke = Colors.Red
   line.StrokeThickness = 1.0
   line.Start = New Point(100, 100)
   line.End = New Point(400, 600)
   container.Children.Add(line)
End Sub
private void AnnLineObject_AnnLineObject(AnnContainer container)
{
   AnnLineObject line = new AnnLineObject();
   line.Stroke = Colors.Red;
   line.StrokeThickness = 1.0;
   line.Start = new Point(100, 200);
   line.End = new Point(400, 600);
   container.Children.Add(line);
}
private void AnnLineObject_AnnLineObject(AnnContainer container)
{
   AnnLineObject line = new AnnLineObject();
   line.Stroke = Colors.Red;
   line.StrokeThickness = 1.0;
   line.Start = new Point(100, 200);
   line.End = new Point(400, 600);
   container.Children.Add(line);
}
Private Sub AnnLineObject_AnnLineObject(ByVal container As AnnContainer)
   Dim line As AnnLineObject = New AnnLineObject()
   line.Stroke = Colors.Red
   line.StrokeThickness = 1.0
   line.Start = New Point(100, 200)
   line.End = New Point(400, 600)
   container.Children.Add(line)
End Sub
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

AnnLineObject Members
Leadtools.Windows.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices

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