A3DObject

Overview

A3DObject is a class in Aspose.3D FOSS for Python. Inherits from: INamedObject.

A3DObject.find_property returns the property object matching the given name if it exists.

This class provides 5 methods for working with A3DObject objects in Python programs. Available methods include: __init__, find_property, get_property, remove_property, set_property. All exported members are accessible to any Python application after installing the Aspose.3D FOSS for Python package. Properties: name, properties.

Properties

NameTypeAccessDescription
namestrReadGets the name.
propertiesPropertyCollectionReadGets the properties.

Methods

SignatureDescription
__init__(name: str)
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

See Also