PropertyCollection

PropertyCollection

Overview

PropertyCollection is a class in Aspose.3D FOSS for Typescript.

PropertyCollection.get returns the stored value of the specified property name.

This class provides 6 methods for working with PropertyCollection objects in Typescript programs. Available methods include: [Symbol.iterator], findProperty, get, getItem, removeProperty, toString. All public members are accessible to any Typescript application after installing the Aspose.3D FOSS for Typescript package. Properties: count, length.

Properties

NameTypeAccessDescription
countnumberReadGets the count.
lengthnumberReadGets the length.

Methods

SignatureDescription
findProperty(propertyName: string)Property | null
get(property: string)anyReturns the stored value of the specified property name
removeProperty(property: string | Property)booleanDeletes the property by name or instance and returns true on success
getItem(key: number)PropertyReturns the Property located at the given numeric index
[Symbol.iterator]()Iterator<Property>
toString()stringReturns a string representation of the property collection

See Also