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
| Name | Type | Access | Description |
|---|---|---|---|
count | number | Read | Gets the count. |
length | number | Read | Gets the length. |
Methods
| Signature | Description |
|---|---|
findProperty(propertyName: string) → Property | null | |
get(property: string) → any | Returns the stored value of the specified property name |
removeProperty(property: string | Property) → boolean | Deletes the property by name or instance and returns true on success |
getItem(key: number) → Property | Returns the Property located at the given numeric index |
[Symbol.iterator]() → Iterator<Property> | |
toString() → string | Returns a string representation of the property collection |