SmartTagCollection

SmartTagCollection class

Represents all smart tags in the cell.

class SmartTagCollection;

Methods

MethodDescription
get(number)Gets a SmartTag object at the specific index
getRow()Gets the row of the cell smart tags.
getColumn()Gets the column of the cell smart tags.
add(string, string)Adds a smart tag.
getCount()Gets the number of elements contained in.

get(number)

Gets a SmartTag object at the specific index

get(index: number) : SmartTag;

Parameters:

ParameterTypeDescription
indexnumberThe index.

Returns

returns a SmartTag object.

getRow()

Gets the row of the cell smart tags.

getRow() : number;

getColumn()

Gets the column of the cell smart tags.

getColumn() : number;

add(string, string)

Adds a smart tag.

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

Parameters:

ParameterTypeDescription
uristringSpecifies the namespace URI of the smart tag
namestringSpecifies the name of the smart tag.

Returns

The index of smart tag in the list.

getCount()

Gets the number of elements contained in.

getCount() : number;