Leadtools.Annotations Namespace : AnnEllipseObject Class |
[SerializableAttribute()] public class AnnEllipseObject : AnnRectangleObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Declaration <SerializableAttribute()> Public Class AnnEllipseObject Inherits AnnRectangleObject Implements System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
'Usage Dim instance As AnnEllipseObject
[SerializableAttribute()] public ref class AnnEllipseObject : public AnnRectangleObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
The ellipse annotation object is a simple ellipse defined by a bounding rectangle, a pen and a brush.
For more information about the ellipse annotation object refer to AnnEllipseObject. For more information about the automated ellipse annotation object, refer to Annotation Objects - Automated Features.
Imports Leadtools Imports Leadtools.Annotations Imports Leadtools.Codecs Imports Leadtools.WinForms Private Sub AnnEllipseObject_AnnEllipseObject(ByVal container As AnnContainer) Dim ellipse As AnnEllipseObject = New AnnEllipseObject() ellipse.Pen = New AnnPen(Color.Red, New AnnLength(1, AnnUnit.Pixel)) ellipse.Brush = New AnnSolidBrush(Color.White) ellipse.Bounds = New AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel) container.Objects.Add(ellipse) End Sub
using Leadtools; using Leadtools.Annotations; using Leadtools.Codecs; using Leadtools.WinForms; private void AnnEllipseObject_AnnEllipseObject(AnnContainer container) { AnnEllipseObject ellipse = new AnnEllipseObject(); ellipse.Pen = new AnnPen(Color.Red, new AnnLength(1, AnnUnit.Pixel)); ellipse.Brush = new AnnSolidBrush(Color.White); ellipse.Bounds = new AnnRectangle(100, 200, 400, 600, AnnUnit.Pixel); container.Objects.Add(ellipse); }