Leadtools.Windows.Annotations Requires Document/Medical license. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
AnnEllipseObject Class
See Also  Members   Example 
Leadtools.Windows.Annotations Namespace : AnnEllipseObject Class





Defines an annotation ellipse object.

Object Model



Syntax

Visual Basic (Declaration) 
<SerializableAttribute()>
Public Class AnnEllipseObject 
   Inherits AnnRectangleObject
Visual Basic (Usage)Copy Code
Dim instance As AnnEllipseObject
C# 
[SerializableAttribute()]
public class AnnEllipseObject : AnnRectangleObject 
C++/CLI 
[SerializableAttribute()]
public ref class AnnEllipseObject : public AnnRectangleObject 
XAML Object Element Usage 

<AnnEllipseObject .../>

XAML Object Element Usage 

<AnnEllipseObject .../>

Example

For XAML example, refer to AnnContainer.

This example creates an ellipse object.

Visual BasicCopy Code
Private Sub AnnEllipseObject_AnnEllipseObject(ByVal container As AnnContainer)
  Dim ellipse As AnnEllipseObject = New AnnEllipseObject()
  ellipse.Stroke = Brushes.Red
  ellipse.StrokeThickness = 1.0
  ellipse.Fill = Brushes.White
  ellipse.Left = 100
  ellipse.Top = 200
  ellipse.Width = 400
  ellipse.Height = 600
  container.Children.Add(ellipse)
End Sub
C#Copy Code
private void AnnEllipseObject_AnnEllipseObject(AnnContainer container) 

   AnnEllipseObject ellipse = new AnnEllipseObject(); 
   ellipse.Stroke = Brushes.Red; 
   ellipse.StrokeThickness = 1.0; 
   ellipse.Fill = Brushes.White; 
   ellipse.Left = 100; 
   ellipse.Top = 200; 
   ellipse.Width = 400; 
   ellipse.Height = 600; 
   container.Children.Add(ellipse); 
}

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.

Inheritance Hierarchy

System.Object
   System.Windows.Threading.DispatcherObject
      System.Windows.DependencyObject
         System.Windows.Media.Visual
            System.Windows.UIElement
               System.Windows.FrameworkElement
                  Leadtools.Windows.Annotations.AnnObjectBase
                     Leadtools.Windows.Annotations.AnnRectangleObject
                        Leadtools.Windows.Annotations.AnnEllipseObject

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also

AnnEllipseObject requires a Document/Medical product license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features and Unlocking Special LEAD Features.