Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: table ::

interface XCellCursor

Base Interface
com::sun::star::table::XCellRange

Description
provides methods to control the position of a cell cursor.
See also
com::sun::star::table::CellCursor


Known Services which Export this Interface

com::sun::star::table::CellCursor represents a cell cursor in a table.

Methods' Summary

gotoStart points the cursor to a single cell which is the beginning of a contiguous series of (filled) cells.
gotoEnd points the cursor to a single cell which is the end of a contiguous series of (filled) cells.
gotoNext points the cursor to the next unprotected cell.
gotoPrevious points the cursor to the previous unprotected cell.
gotoOffset moves the origin of the cursor relative to the current position.

Methods' Details

gotoStart
 
void
gotoStart();
Description
points the cursor to a single cell which is the beginning of a contiguous series of (filled) cells.
gotoEnd
 
void
gotoEnd();
Description
points the cursor to a single cell which is the end of a contiguous series of (filled) cells.
gotoNext
 
void
gotoNext();
Description
points the cursor to the next unprotected cell.

If the sheet is not protected, this is the next cell to the right.

gotoPrevious
 
void
gotoPrevious();
Description
points the cursor to the previous unprotected cell.

If the sheet is not protected, this is the next cell to the left.

gotoOffset
 
void
gotoOffset(
[ in ] long nColumnOffset,
[ in ] long nRowOffset );

Description
moves the origin of the cursor relative to the current position.
Parameter nColumnOffset
is the count of columns to move. A negative value moves the cursor to the left.
Parameter nRowOffset
is the count of rows to move. A negative value moves the cursor to the top.

Top of Page