SmartTagSetting

SmartTagSetting class

Represents all SmartTagCollection object in the worksheet.

class SmartTagSetting;

Methods

MethodDescription
get(number)Gets a SmartTagCollection object by the index.
add(number, number)Adds a SmartTagCollection object to a cell.
add(string)Add a cell smart tags.
getCount()Gets the number of elements contained in.

get(number)

Gets a SmartTagCollection object by the index.

get(index: number) : SmartTagCollection;

Parameters:

ParameterTypeDescription
indexnumberThe index of the SmartTagCollection object in the list.

Returns

SmartTagCollection

add(number, number)

Adds a SmartTagCollection object to a cell.

add(row: number, column: number) : number;

Parameters:

ParameterTypeDescription
rownumberThe row of the cell.
columnnumberThe column of the cell.

Returns

Returns index of a SmartTagCollection object in the worksheet.

add(string)

Add a cell smart tags.

add(cellName: string) : number;

Parameters:

ParameterTypeDescription
cellNamestringThe name of the cell.

getCount()

Gets the number of elements contained in.

getCount() : number;