SmartTagSetting
Contents
[
Hide
]SmartTagSetting class
Represents all SmartTagCollection object in the worksheet.
class SmartTagSetting;
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
index | number | The index of the SmartTagCollection object in the list. |
Returns
get(number, number)
Gets the SmartTagCollection object of the cell.
get(row: number, column: number) : SmartTagCollection;
Parameters:
Parameter | Type | Description |
---|---|---|
row | number | The row index of the cell. |
column | number | The 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:
Parameter | Type | Description |
---|---|---|
cellName | string | The 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:
Parameter | Type | Description |
---|---|---|
row | number | The row of the cell. |
column | number | The 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:
Parameter | Type | Description |
---|---|---|
cellName | string | The name of the cell. |
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;