PropertyCollection
Overview
PropertyCollection is a class in Aspose.3D FOSS for Typescript.
PropertyCollection.get returns the stored value of the specified property name.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
count | number | Read | Indicates the total number of properties stored in the collection |
length | number | Read | Provides the length of the collection, synonymous with count |
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 |