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

(Global Index)

Syntax

interface XViewPane : com::sun::star::uno::XInterface ;

Description

represents a pane in a view of a spreadsheet document.

See also

SpreadsheetViewPane

Method Summary

getFirstVisibleColumn returns the first column that is visible in the pane.

setFirstVisibleColumn sets the first column that is visible in the pane.

getFirstVisibleRow returns the first row that is visible in the pane.

setFirstVisibleRow sets the first row that is visible in the pane.

getVisibleRange returns the address of the cell range that consists of the cells which are visible in the pane.

Known Services Which Export this Interface

com::sun::star::sheet::SpreadsheetViewPane

Method Details



getFirstVisibleColumn

Syntax

long getFirstVisibleColumn ();

Description

returns the first column that is visible in the pane.


setFirstVisibleColumn

Syntax

void setFirstVisibleColumn (
long nFirstVisibleColumn );

Description

sets the first column that is visible in the pane.


getFirstVisibleRow

Syntax

long getFirstVisibleRow ();

Description

returns the first row that is visible in the pane.


setFirstVisibleRow

Syntax

void setFirstVisibleRow (
long nFirstVisibleRow );

Description

sets the first row that is visible in the pane.


getVisibleRange

Syntax

com::sun::star::table::CellRangeAddress getVisibleRange ();

Description

returns the address of the cell range that consists of the cells which are visible in the pane.

Top of Page