A3DObject
Overview
A3DObject is a class in Aspose.3D FOSS for Java.
Inherits from: INamedObject.
A3DObject provides a PropertyCollection that can be queried, added to, or removed from via findProperty, getProperty, setProperty, and removeProperty methods.
This class provides 10 methods for working with A3DObject objects in Java programs.
Available methods include: A3DObject, findProperty, getName, getProperties, getProperty, removeProperty, setName, setProperty.
All public members are accessible to any Java application after installing the Aspose.3D FOSS for Java package.
Properties: name, properties.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
name | String | Read | Gets the name. |
properties | PropertyCollection | Read | Gets the properties. |
Methods
| Signature | Description |
|---|---|
A3DObject() | Creates an object with the specified name |
A3DObject(name: String) | Calls A3DObject(name) on this A3DObject instance. |
getName() → String | Returns the name. |
setName(name: String) | Sets the name value. |
getProperties() → PropertyCollection | Returns the 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) | Sets the property value. |
removeProperty(name: String) → boolean | Deletes the specified property |
removeProperty(property: Property) → boolean | Calls removeProperty(property) on this A3DObject instance. |