interface XCellCursor in module com::sun::star::table::

(Global Index)

Syntax

interface XCellCursor : com::sun::star::table::XCellRange ;

Description

represents a cursor in a table.

See also

CellCursor

Method Summary

gotoStart points the cursor to a single cell which is the beginning of a contiguous series of cells.

gotoEnd points the cursor to a single cell which is the end of a contiguous series of cells.

gotoNext points the cursor to the next unprotected cell.

gotoPrevious points the cursor to the previous unprotected cell.

gotoOffset points the cursor to cells off-set by a specified number of columns and rows from those to which it currently points.

Known Services Which Export this Interface

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

Method Details



gotoStart

Syntax

void gotoStart ();

Description

points the cursor to a single cell which is the beginning of a contiguous series of cells.


gotoEnd

Syntax

void gotoEnd ();

Description

points the cursor to a single cell which is the end of a contiguous series of cells.


gotoNext

Syntax

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

Syntax

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

Syntax

void gotoOffset (
long nColumnOffset,
long nRowOffset );

Description

points the cursor to cells off-set by a specified number of columns and rows from those to which it currently points.

Top of Page