Arbortext IsoDraw > Macro Language Reference > Object Data Types > Element Object > element.innerthread
  
element.innerthread
This property gives access to all inner threads 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.innerthread.centerPoint
Returns and sets the center point of the inner thread as point.
myElem.innerthread.centerPoint.x = 134.56
myElem.innerthread.centerPoint.y = 12.45
element.innerthread.angle
Returns and sets the angle of the inner thread as float.
myElem.innerthread.angle = 45
element.innerthread.value
Returns and sets the value of the inner thread as float.
myElem.innerthread.value = 90
element.innerthread.radius
Returns and sets the radius of the inner thread as float.
myElem.innerthread.radius = 500
element.innerthread.segments[ ].selected
Returns the selected state of one inner thread segment as integer. This property is read only. 0 means “not selected” and 1 means “selected”.
MESSAGE myElem.innerthread.segments[1].selected
element.innerthread.segments[ ].startAngle
Returns and sets the start angle of one inner thread segment as float.
myElem.innerthread.segments[1].startAngle = 35.7
element.innerthread.segments[ ].endAngle
Returns and sets the end angle of one inner thread segment as float.
myElem.innerthread.segments[1].endAngle = 35.7
element.innerthread.segments[ ].pen
Returns and sets the pen of one inner thread segment as string. Any existing pen is allowed.
myElem.innerthread.segments[1].pen = "Thick"
element.innerthread.segments[ ].style
Returns and sets the style of one inner thread segment as string. Any existing style is allowed.
myElem.innerthread.segments[1].style = "Solid"
element.innerthread.segments[ ].halo
Returns and sets the halo of one inner thread segment as string. Any existing halo is allowed.
myElem.innerthread.segments[1].halo = "Autom. Long"