Custom Properties Description

The custom property data can be accessed through scripting.

Here is an example. event.source could be any component. The example prints information about each custom property that exists on the component.

for property in event.source.getDynamicProps().values():		
	print "Name:",property.getName()
	print "Description:",property.getShortDescription()
	print "Type:",property.getPropertyType()
	print "Value:",property.getValue()
	print