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

AnnRectangleObject Class

Example 





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

The rectangle annotation object is a simple rectangle, a stroke and a fill. For more information about the rectangle annotation object refer to WPF AnnRectangleObject. For more information about the automated rectangle annotation object, refer to WPF Annotation Objects - Automated Features.

Example

For XAML example, refer to AnnGroupObject.

Copy CodeCopy Code  
Private Sub AnnRectangleObject_AnnRectangleObject(ByVal container As AnnContainer)
   Dim rect As AnnRectangleObject = New AnnRectangleObject()
   rect.Stroke = Colors.Red
   rect.StrokeThickness = 1.0
   rect.Fill = Colors.White
   rect.Rect = New Rect(100, 200, 400, 600)
   container.Children.Add(rect)
End Sub
private void AnnRectangleObject_AnnRectangleObject(AnnContainer container)
{
   AnnRectangleObject rect = new AnnRectangleObject();
   rect.Stroke = Colors.Red;
   rect.Fill = Colors.White;
   rect.Rect = new Rect(100, 200, 400, 600);
   rect.StrokeThickness = 1.0;
   container.Children.Add(rect);
}
private void AnnRectangleObject_AnnRectangleObject(AnnContainer container)
{
   AnnRectangleObject rect = new AnnRectangleObject();
   rect.Stroke = Colors.Red;
   rect.Fill = Colors.White;
   rect.Rect = new Rect(100, 200, 400, 600);
   rect.StrokeThickness = 1.0;
   container.Children.Add(rect);
}
Private Sub AnnRectangleObject_AnnRectangleObject(ByVal container As AnnContainer)
   Dim rect As AnnRectangleObject = New AnnRectangleObject()
   rect.Stroke = Colors.Red
   rect.Fill = Colors.White
   rect.Rect = New Rect(100, 200, 400, 600)
   rect.StrokeThickness = 1.0
   container.Children.Add(rect)
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

AnnRectangleObject Members
Leadtools.Windows.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices

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