CustomPropertyCollection
Contents
[
Hide
]CustomPropertyCollection class
A collection of CustomProperty objects that represent additional information.
class CustomPropertyCollection;
Methods
Method | Description |
---|---|
get(number) | Gets the custom property by the specific index. |
get(string) | Gets the custom property by the property name. |
add(string, string) | Adds custom property information. |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
get(number)
Gets the custom property by the specific index.
get(index: number) : CustomProperty;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The index. |
Returns
The custom property
get(string)
Gets the custom property by the property name.
get(name: string) : CustomProperty;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | The property name. |
Returns
The custom property
add(string, string)
Adds custom property information.
add(name: string, value: string) : number;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | The name of the custom property. |
value | string | The value of the custom property. |
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;