Arbortext IsoDraw > Macro Language Reference > Object Data Types > Element Object > element.ellipse
  
element.ellipse
This property gives access to all ellipse attributes but it can not be used directly. It is assumed that myElem has already been defined as an element for the following samples
element.ellipse.centerPoint
Returns and sets the center point of the ellipse as point.
myElem.ellipse.centerPoint.x = 58.76
myElem.ellipse.centerPoint.y = 12.45
element.ellipse.angle
Returns and sets the angle of the ellipse as float.
myElem.ellipse.angle = 45
element.ellipse.value
Returns and sets the value of the ellipse as float.
myElem.ellipse.value = 90
element.ellipse.radius
Returns and sets the radius of the ellipse as float.
myElem.ellipse.radius = 500
element.ellipse.segments[ ].selected
Returns the selected state of one ellipse segment as integer. This property is read only. 0 means “not selected” and 1 means “selected”.
MESSAGE myElem.ellipse.segments[1].selected
element.ellipse.segments[ ].startAngle
Returns and sets the start angle of one ellipse segment as float.
myElem.ellipse.segments[1].startAngle = 35.7
element.ellipse.segments[ ].endAngle
Returns and sets the end angle of one ellipse segment as float.
myElem.ellipse.segments[1].endAngle = 35.7
element.ellipse.segments[ ].pen
Returns and sets the pen of one ellipse segment as string. Any existing pen is allowed.
myElem.ellipse.segments[1].pen = "Thick"
element.ellipse.segments[ ].style
Returns and sets the style of the ellipse segment as string. Any existing style is allowed.
myElem.ellipse.segments[1].style = "Solid"
element.ellipse.segments[ ].halo
Returns and sets the halo of one ellipse segment as string. Any existing halo is allowed.
myElem.ellipse.segments[1].halo = "Autom. Long"