Arbortext IsoDraw > Macro Language Reference > Object Data Types > Element Object > element.info.attributes[ ]
  
element.info.attributes[ ]
This property gives access to object attributes but can not be used directly. It is assumed that myElem has already been defined as an element for the following samples
element.info.attributes[ ].type
Returns and sets the type of one object attribute as string. Allowed string values are "String", "Float", "Integer" and "Link".
myElem.info.attributes[1].type
= "Integer"
element.info.attributes[ ].name
Returns and sets the name of one object attribute as string.
myElem.info.attributes[1].name
= "IsoDraw"
element.info.attributes[ ].value
Returns and sets the value of one object attribute. Depending on what type the attribute is defined the values of this property could be integer, float or string (see element.info.attributes[ ]).
myElem.info.attributes[1].value = "Integer"