CustomPropertyCollection

CustomPropertyCollection class

A collection of CustomProperty objects that represent additional information.

class CustomPropertyCollection;

Methods

MethodDescription
get(number)Gets the custom property by the specific index.
add(string, string)Adds custom property information.
getCount()Gets the number of elements contained in.

get(number)

Gets the custom property by the specific index.

get(index: number) : CustomProperty;

Parameters:

ParameterTypeDescription
indexnumberThe index.

Returns

The custom property

add(string, string)

Adds custom property information.

add(name: string, value: string) : number;

Parameters:

ParameterTypeDescription
namestringThe name of the custom property.
valuestringThe value of the custom property.

getCount()

Gets the number of elements contained in.

getCount() : number;