←Select platform

AnnRectangleObject Class

Summary

Defines an annotation rectangle object.

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.

This example creates a new rectangle object with top, left at 100, 200, width, height of 400, 600 pixels, a red stroke and a white brush and then adds it to a container.

C#
VB
Silverlight C#
Silverlight VB
using Leadtools.Windows.Controls; 
using Leadtools.Windows.Annotations; 
using Leadtools.Demos; 
using Leadtools.Help; 
 
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); 
} 
Imports Leadtools.Windows.Controls 
Imports Leadtools.Windows.Annotations 
 
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 
using Leadtools.Windows.Controls; 
using Leadtools.Windows.Annotations; 
using Leadtools.Examples; 
//using Leadtools.Help; 
 
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); 
} 
Imports Leadtools.Windows.Controls 
Imports Leadtools.Windows.Annotations 
 
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

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

Leadtools.Windows.Annotations Assembly