interface XSheetCellCursor in module com::sun::star::sheet::

(Global Index)

Syntax

interface XSheetCellCursor : com::sun::star::sheet::XSheetCellRange ;

Description

represents a cursor which can select a cell range.

See also

SheetCellCursor

Method Summary

collapseToCurrentRegion collapses the cursor into the region containing the cells to which it currently points.

collapseToCurrentArray collapses the cursor into the range of the array formula to which it is currently pointing.

collapseToMergedArea collapses the cursor into the range of merged cells.

expandToEntireColumns expands the cursor to include the columns of the cells to which it is currently pointing.

expandToEntireRows expands the cursor to include the rows of the cells to which it is currently pointing.

collapseToSize changes the size of a cursor range.

Known Services Which Export this Interface

com::sun::star::sheet::SheetCellCursor

Method Details



collapseToCurrentRegion

Syntax

void collapseToCurrentRegion ();

Description

collapses the cursor into the region containing the cells to which it currently points.

A region is a cell range bounded by empty cells.


collapseToCurrentArray

Syntax

void collapseToCurrentArray ();

Description

collapses the cursor into the range of the array formula to which it is currently pointing.

If the cursor does not point to a range with an array formula, it is left unchanged.


collapseToMergedArea

Syntax

void collapseToMergedArea ();

Description

collapses the cursor into the range of merged cells.

If the cursor does not point to a range with merged cells, it is left unchanged.


expandToEntireColumns

Syntax

void expandToEntireColumns ();

Description

expands the cursor to include the columns of the cells to which it is currently pointing.


expandToEntireRows

Syntax

void expandToEntireRows ();

Description

expands the cursor to include the rows of the cells to which it is currently pointing.


collapseToSize

Syntax

void collapseToSize (
long nColumns,
long nRows );

Description

changes the size of a cursor range.

Top of Page