Class Ellipse
Ellipse class
Contains elements specifying the x- and y-coordinates of the ellipse’s center point and two points on the ellipse.
public class Ellipse : Coordinate
Constructors
Name | Description |
---|
Ellipse() | Creates an instance of the Ellipse class. |
Properties
Name | Description |
---|
A { get; set; } | An x-coordinate of a point on the ellipse paired with the y-coordinate represented by the B element. |
B { get; set; } | A y-coordinate of a point on an ellipse paired with an x-coordinate represented by the A element. |
C { get; set; } | An x-coordinate of a point on the ellipse paired with y-coordinate represented by the D element. |
D { get; set; } | A y-coordinate of a point on the ellipse paired with x-coordinate represented by the C element. |
override Del { get; set; } | A flag indicating whether the element has been deleted locally. A value of 1 indicates that the element was deleted locally. |
override IX { get; set; } | The zero-based index of the element within its parent element. |
X { get; set; } | The x-coordinate of the center of the ellipse. |
Y { get; set; } | The y-coordinate of the center of the ellipse. |
Methods
Name | Description |
---|
Clone() | Creates deep copy of this instance. |
See Also