LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly)

AnnEllipseObject Class

Show in webframe
Example 





Members 
Defines an annotation ellipse object.
Object Model
Syntax
public class AnnEllipseObject : AnnRectangleObject, IAnnHeaderIAnnObjectIAnnRectangle  
'Declaration
 
Public Class AnnEllipseObject 
   Inherits AnnRectangleObject
   Implements IAnnHeaderIAnnObjectIAnnRectangle 
'Usage
 
Dim instance As AnnEllipseObject

            

            
public ref class AnnEllipseObject : public AnnRectangleObject, IAnnHeaderIAnnObjectIAnnRectangle  
Remarks

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.

Example

For XAML example, refer to AnnContainer.

Copy Code  
Imports Leadtools.Windows.Annotations
Imports Leadtools.Windows.Controls

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
using Leadtools.Windows.Annotations;
using Leadtools.Windows.Controls;
using Leadtools.Demos;
using Leadtools.Help;

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);
}
using Leadtools.Windows.Annotations;
using Leadtools.Windows.Controls;
using Leadtools.Examples;

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);
}
Imports Leadtools.Windows.Annotations
Imports Leadtools.Windows.Controls

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
Requirements

Target Platforms

See Also

Reference

AnnEllipseObject Members
Leadtools.Windows.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.