Methods ¶
attrib()
→ hou.Attrib
Return the parent index pair attribute.
numIndices()
→ int
Return the number of indices in the property table.
propertyNames()
→ tuple
of string
Return a list of all property names.
propertyDataType(property_name)
→ hou.attribData enum value
Return the property’s data type (int, float or string).
propertySize(property_name)
→ int
Return the number of data components in the property value.
floatPropertyValueAtIndex(property_name, row)
→ float
Return the property value for a particular floating point property.
Raises hou.OperationFailed if no property exists with this name or the property is not float of size 1.
floatListPropertyValueAtIndex(property_name, row)
→ tuple
of float
Return a list of property values for a particular floating point property.
Raises hou.OperationFailed if no property exists with this name.
intPropertyValueAtIndex(property_name, row)
→ int
Return the property value for a particular integer property.
Raises hou.OperationFailed if no property exists with this name or the property is not integer of size 1.
intListPropertyValueAtIndex(property_name, row)
→ tuple
of int
Return a list of property values for a particular integer property.
Raises hou.OperationFailed if no property exists with this name.
stringPropertyValueAtIndex(property_name, row)
→ string
Return the property value for a particular string property.
Raises hou.OperationFailed if no property exists with this name or the property is not string of size 1.
stringListPropertyValueAtIndex(property_name, row)
→ tuple
of string
Return a list of property values for a particular string property.
Raises hou.OperationFailed if no property exists with this name.