SmartTagCollection
Contents
[
Hide
]SmartTagCollection class
Represents all smart tags in the cell.
class SmartTagCollection;
Methods
Method | Description |
---|---|
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. |
isNull() | Checks whether the implementation object is null. |
get(number)
Gets a SmartTag object at the specific index
get(index: number) : SmartTag;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The 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:
Parameter | Type | Description |
---|---|---|
uri | string | Specifies the namespace URI of the smart tag |
name | string | Specifies 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;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;