Leadtools.Windows.Annotations Namespace : AnnRectangleObject Class |
public class AnnRectangleObject : AnnObject, IAnnHeader, IAnnObject, IAnnRectangle
'Declaration Public Class AnnRectangleObject Inherits AnnObject Implements IAnnHeader, IAnnObject, IAnnRectangle
'Usage Dim instance As AnnRectangleObject
public ref class AnnRectangleObject : public AnnObject, IAnnHeader, IAnnObject, IAnnRectangle
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.
For XAML example, refer to AnnGroupObject.
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.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); }
using Leadtools.Windows.Controls; using Leadtools.Windows.Annotations; using Leadtools.Examples; 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