SmartTagSetting

SmartTagSetting class

Represents all SmartTagCollection object in the worksheet.

class SmartTagSetting;

Methods

MethodDescription
get(number)Gets a SmartTagCollection object by the index.
get(number, number)Gets the SmartTagCollection object of the cell.
get(string)Gets the SmartTagCollection object of the cell.
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.
isNull()Checks whether the implementation object is null.

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

get(number, number)

Gets the SmartTagCollection object of the cell.

get(row: number, column: number) : SmartTagCollection;

Parameters:

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

Returns

Returns the SmartTagCollection object of the cell. Returns null if there is no any smart tags on the cell.

get(string)

Gets the SmartTagCollection object of the cell.

get(cellName: string) : SmartTagCollection;

Parameters:

ParameterTypeDescription
cellNamestringThe name of the cell.

Returns

Returns the SmartTagCollection object of the cell. Returns null if there is no any smart tags on the cell.

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;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;