A3DObject

Overview

A3DObject is a class in Aspose.3D FOSS for .NET. Inherits from: INamedObject.

The base class of all Aspose.ThreeD objects, all sub classes will support dynamic properties.

Properties

NameTypeAccessDescription
NamestringRead/WriteGets or sets the object’s name
PropertiesPropertyCollectionReadProvides access to the collection of dynamic properties

Methods

SignatureDescription
A3DObject()Creates a new instance with default settings
A3DObject(name: string)
GetName()The name of the object
RemoveProperty(property: Property)Removes a dynamic property.
RemoveProperty(property: string)Removes a dynamic property.
GetProperty(property: string)Get the value of specified property
SetProperty(property: string, value: object?)Sets the value of specified property
FindProperty(propertyName: string)Finds the property. It can be a dynamic property (Created by CreateDynamicProperty/SetProperty) or native property(Identified by its name)

See Also