Usage

Returns the analyst item itself one time for each property in its property table.
This node enables the use of the $PropertyName() and $PropertyValue() macros in child production nodes, to insert these properties in the generated document.

Details

AnalystPropertyNavigation.png

PropertyName() Jython script :

def PropertyName(element):
table = element.getAnalystProperties()
properties = table.getType().getOwned()
property = properties.get(index)
return property.getName()

PropertyValue() Jython script :

def PropertyValue(element):
table = element.getAnalystProperties()
properties = table.getType().getOwned()
property = properties.get(index)
return table.getProperty(property)