A generic data layer object property can be a collection of properties, or a primitive value, possible primitive types are boolean, integer, string or a floating point number.
Methods ¶
Instance Methods ¶
__init__(value)
Constructs a new ObjectProperty instance using the given value.
getFloatValue()
→ float
Returns the float value of the property.
getIntValue()
→ int
Returns the int value of the property.
getStringValue()
→ str
Returns the str value of the property.
getArrayValue()
→ list
Returns the array value of the property.
getSetValue()
→ set
Returns the set value of the property.
getPythonValue()
→ list
or set
or float
or int
or bool
or str
Converts the property into a generic python object.