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

NameTypeAccessDescription
nameStringReadHolds the object’s name
propertiesPropertyCollectionReadHolds the object’s PropertyCollection

Methods

SignatureDescription
A3DObject()Creates an object with the specified name
A3DObject(name: String)
getName()StringReturns the object’s name
setName(name: String)Assigns a new name, treating null as empty
getProperties()PropertyCollectionProvides the collection of attached properties
findProperty(name: String)PropertySearches for a property by name and returns it if found
getProperty(name: String)ObjectRetrieves the value of a named property
setProperty(name: String, value: Object)Adds or updates a property with the given value
removeProperty(name: String)booleanDeletes the specified property
removeProperty(property: Property)

See Also