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

NameTypeAccessDescription
namestringRead/WriteHolds the object’s identifier string
propertiesPropertyCollectionReadProvides access to the object’s PropertyCollection

Methods

SignatureDescription
constructor(name: string)Creates a new A3DObject with the given name
findProperty(propertyName: string)Property | nullReturns the Property with the specified name or null if not found
getProperty(property: string)anyRetrieves the value of the named property
setProperty(property: string, value: any)Assigns a value to the named property
removeProperty(property: string | Property)booleanDeletes the specified property by name or Property instance, returning success
toString()stringReturns a string representation of the object

See Also