A3DObject
Overview
A3DObject is a class in Aspose.3D FOSS for Java.
Inherits from: INamedObject.
A3DObject.A3DObject creates an object with an empty name.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
name | String | Read | Holds the object’s name |
properties | PropertyCollection | Read | Holds the object’s PropertyCollection |
Methods
| Signature | Description |
|---|---|
A3DObject() | Creates an object with the specified name |
A3DObject(name: String) | |
getName() → String | Returns the object’s name |
setName(name: String) | Assigns a new name, treating null as empty |
getProperties() → PropertyCollection | Provides the collection of attached properties |
findProperty(name: String) → Property | Searches for a property by name and returns it if found |
getProperty(name: String) → Object | Retrieves the value of a named property |
setProperty(name: String, value: Object) | Adds or updates a property with the given value |
removeProperty(name: String) → boolean | Deletes the specified property |
removeProperty(property: Property) |