SmartTagCollection

SmartTagCollection class

Represents all smart tags in the cell.

class SmartTagCollection;

Properties

PropertyTypeDescription
rownumberReadonly. Gets the row of the cell smart tags.
columnnumberReadonly. Gets the column of the cell smart tags.

Methods

MethodDescription
get(number)Gets a SmartTag object at the specific index
add(string, string)Adds a smart tag.

row

Readonly. Gets the row of the cell smart tags.

row : number;

column

Readonly. Gets the column of the cell smart tags.

column : number;

get(number)

Gets a SmartTag object at the specific index

get(index: number) : SmartTag;

Parameters:

ParameterTypeDescription
indexnumberThe index.

Returns

returns a SmartTag object.

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.