Arbortext IsoDraw > Macro Language Reference > Object Data Types > Element Object > element.image
  
element.image
This property gives access to all image 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.image.startPoint
Returns and sets the start point of an image element as point. The start point is the images lower left corner.
myElem.image.startPoint.x = 122.76
myElem.image.startPoint.y = 131.76
element.image.horResolution
Returns the horizontal resolution of an image element in dots per inch (dpi) as float. This value is Read Only.
MESSAGE myElem.image.horResolution
element.image.verResolution
Returns the vertical resolution of an image element in dpi as float. This value is Read Only.
MESSAGE myElem.image.verResolution
element.image.pixelDepth
Returns the pixel depth of an image element as integer. This value is Read Only.
MESSAGE myElem.image.pixelDepth
element.image.kind
Returns the kind of image element selected as string. This value is Read Only.
MESSAGE myElem.image.kind
element.image.rowBytes
Returns the image’s horizontal size in bytes as integer. This value is Read Only.
MESSAGE myElem.image.rowBytes
element.image.imageWidth
Returns the image’s horizontal size in pixels as integer. This value is Read Only.
MESSAGE myElem.image.imageWidth
element.image.imageHeight
Returns the image’s vertical size in pixels as integer. This value is Read Only.
MESSAGE myElem.image.imageHeight