A3DObject
Overview
A3DObject is a class in Aspose.3D FOSS for Typescript.
Inherits from: INamedObject.
A3DObject.constructor creates a new A3DObject with the given name.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
name | string | Read/Write | Holds the object’s identifier string |
properties | PropertyCollection | Read | Provides access to the object’s PropertyCollection |
Methods
| Signature | Description |
|---|---|
constructor(name: string) | Creates a new A3DObject with the given name |
findProperty(propertyName: string) → Property | null | Returns the Property with the specified name or null if not found |
getProperty(property: string) → any | Retrieves the value of the named property |
setProperty(property: string, value: any) | Assigns a value to the named property |
removeProperty(property: string | Property) → boolean | Deletes the specified property by name or Property instance, returning success |
toString() → string | Returns a string representation of the object |