PropertyCollection

PropertyCollection

Overview

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

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

Properties

NameTypeAccessDescription
countnumberReadIndicates the total number of properties stored in the collection
lengthnumberReadProvides the length of the collection, synonymous with count

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