A3DObject
Overview
A3DObject is a class in Aspose.3D FOSS for Python.
Inherits from: INamedObject.
A3DObject is the base class for named objects and provides methods to find, get, set, and remove custom properties.
This class declares 5 methods for A3DObject objects in Python programs.
Available methods include: __init__, find_property, get_property, remove_property, set_property.
All public members are accessible to any Python application after installing the Aspose.3D FOSS for Python package.
Properties: name, properties.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
name | str | Read/Write | Gets or sets the name. |
properties | PropertyCollection | Read | Gets the properties. |
Methods
| Signature | Description |
|---|---|
__init__(name: str) | Calls init(name) on this A3DObject instance. |
find_property(property_name: str) | Returns the property object matching the given name if it exists |
get_property(property: str) | Retrieves the value of the specified property |
set_property(property: str, value) | Sets the property value. |
remove_property(property) | Deletes the specified property from the object |