|
Syntax
- string getRangeName
();
Returns
-
the name of the cell range that is selected by this cursor.
The name is the cell name of the top left table cell of the range
contatenated by ':' with the table cell name of the bottom left table cell of the cell range.
If the range consists of one table cell only then the name of that table cell is returned.
Syntax
- boolean gotoCellByName
(
- string aCellName,
- boolean bExpand );
Description
moves the cursor to the cell with the specified name.
Syntax
- boolean goLeft
(
- short nCount,
- boolean bExpand );
Description
moves the cursor to the left neighbor.
Syntax
- boolean goRight
(
- short nCount,
- boolean bExpand );
Description
moves the cursor to the right neighbor.
Syntax
- boolean goUp
(
- short nCount,
- boolean bExpand );
Description
moves the cursor to the top neighbor.
Syntax
- boolean goDown
(
- short nCount,
- boolean bExpand );
Description
moves the cursor to the bottom neighbor cell.
Syntax
- void gotoStart
(
- boolean bExpand );
Description
moves the cursor to the top left cell of the table.
Syntax
- void gotoEnd
(
- boolean bExpand );
Description
moves the cursor to the bottom right cell of the table.
Syntax
- boolean mergeRange
();
Description
merges the selected range of cells.
Syntax
- boolean splitRange
(
- short Count,
- boolean Horizontal );
Description
splits the range of cells. The count specifies the number of new cells
that will be created for each cell contained in the range.
|