SmartTagPropertyCollection

SmartTagPropertyCollection class

Represents all properties of cell smart tag.

class SmartTagPropertyCollection;

Constructors

NameDescription
constructor()Default Constructor.

Methods

MethodDescription
get(number)Gets a SmartTagProperty object.
add(string, string)Adds a property of cell’s smart tag.
getCount()Gets the number of elements contained in.

constructor()

Default Constructor.

constructor();

get(number)

Gets a SmartTagProperty object.

get(index: number) : SmartTagProperty;

Parameters:

ParameterTypeDescription
indexnumberThe index

Returns

Returns a SmartTagProperty object.

add(string, string)

Adds a property of cell’s smart tag.

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

Parameters:

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

Returns

return SmartTagProperty

getCount()

Gets the number of elements contained in.

getCount() : number;