Leadtools.Windows.Annotations Namespace : AnnEllipseObject Class |
public class AnnEllipseObject : AnnRectangleObject, IAnnHeader, IAnnObject, IAnnRectangle
'Declaration Public Class AnnEllipseObject Inherits AnnRectangleObject Implements IAnnHeader, IAnnObject, IAnnRectangle
'Usage Dim instance As AnnEllipseObject
public sealed class AnnEllipseObject : IAnnHeader, IAnnObject, IAnnRectangle
function Leadtools.Windows.Annotations.AnnEllipseObject()
public ref class AnnEllipseObject : public AnnRectangleObject, IAnnHeader, IAnnObject, IAnnRectangle
The ellipse annotation object is a simple ellipse defined by a bounding rectangle, a stroke and a fill.
For more information about the ellipse annotation object refer to AnnEllipseObject for WPF. For more information about the automated ellipse annotation object, refer to WPF Annotation Objects - Automated Features.
For XAML example, refer to AnnContainer.
Private Sub AnnEllipseObject_AnnEllipseObject(ByVal container As AnnContainer) Dim ellipse As AnnEllipseObject = New AnnEllipseObject() ellipse.Stroke = Colors.Red ellipse.StrokeThickness = 1.0 ellipse.Fill = Colors.White ellipse.Rect = New Rect(100, 200, 400, 600) container.Children.Add(ellipse) End Sub
private void AnnEllipseObject_AnnEllipseObject(AnnContainer container) { AnnEllipseObject ellipse = new AnnEllipseObject(); ellipse.StrokeThickness = 1.0; ellipse.Stroke = Colors.Red; ellipse.Fill = Colors.White; ellipse.Rect = new Rect(100, 200, 400, 600); container.Children.Add(ellipse); }
private void AnnEllipseObject_AnnEllipseObject(AnnContainer container) { AnnEllipseObject ellipse = new AnnEllipseObject(); ellipse.StrokeThickness = 1.0; ellipse.Stroke = Colors.Red; ellipse.Fill = Colors.White; ellipse.Rect = new Rect(100, 200, 400, 600); container.Children.Add(ellipse); }
Private Sub AnnEllipseObject_AnnEllipseObject(ByVal container As AnnContainer) Dim ellipse As AnnEllipseObject = New AnnEllipseObject() ellipse.StrokeThickness = 1.0 ellipse.Stroke = Colors.Red ellipse.Fill = Colors.White ellipse.Rect = New Rect(100, 200, 400, 600) container.Children.Add(ellipse) End Sub
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