Ellipse
Ellipse class
Contains elements specifying the x- and y-coordinates of the ellipse’s center point and two points on the ellipse.
Constructors
| Name | Description |
|---|---|
| Ellipse | Creates an instance of the Ellipse class. |
Properties
| Name | Type | Description |
|---|---|---|
| IX | int | The zero-based index of the element within its parent element. |
| Del | int | A flag indicating whether the element has been deleted locally. A value of 1 indicates that the element was deleted loca |
| X | DoubleValue | The x-coordinate of the center of the ellipse. |
| Y | DoubleValue | The y-coordinate of the center of the ellipse. |
| A | DoubleValue | An x-coordinate of a point on the ellipse paired with the y-coordinate represented by the B element. |
| B | DoubleValue | A y-coordinate of a point on an ellipse paired with an x-coordinate represented by the A element. |
| C | DoubleValue | An x-coordinate of a point on the ellipse paired with y-coordinate represented by the D element. |
| D | DoubleValue | A y-coordinate of a point on the ellipse paired with x-coordinate represented by the C element. |
Methods
| Name | Description |
|---|---|
| deepClone | Creates deep copy of this instance. |
Ellipse()
Creates an instance of the Ellipse class.
Ellipse.IX property
The zero-based index of the element within its parent element.
Type: int
Ellipse.Del property
A flag indicating whether the element has been deleted locally. A value of 1 indicates that the element was deleted locally. The value of the property is BOOL integer constant.
Type: int
Ellipse.X property
The x-coordinate of the center of the ellipse.
Type: DoubleValue
Ellipse.Y property
The y-coordinate of the center of the ellipse.
Type: DoubleValue
Ellipse.A property
An x-coordinate of a point on the ellipse paired with the y-coordinate represented by the B element.
Type: DoubleValue
Ellipse.B property
A y-coordinate of a point on an ellipse paired with an x-coordinate represented by the A element.
Type: DoubleValue
Ellipse.C property
An x-coordinate of a point on the ellipse paired with y-coordinate represented by the D element.
Type: DoubleValue
Ellipse.D property
A y-coordinate of a point on the ellipse paired with x-coordinate represented by the C element.
Type: DoubleValue
deepClone()
Creates deep copy of this instance.