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

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

interface XViewPane

Base Interface
com::sun::star::uno::XInterface

Description
represents a pane in a view of a spreadsheet document.
See also
com::sun::star::sheet::SpreadsheetViewPane


Known Services which Export this Interface

com::sun::star::sheet::SpreadsheetViewPane a single pane in a view of a spreadsheet document.

Methods' 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.

Methods' Details

getFirstVisibleColumn
 
long
getFirstVisibleColumn();
Description
returns the first column that is visible in the pane.
setFirstVisibleColumn
 
void
setFirstVisibleColumn(
[ in ] long nFirstVisibleColumn );

Description
sets the first column that is visible in the pane.
getFirstVisibleRow
 
long
getFirstVisibleRow();
Description
returns the first row that is visible in the pane.
setFirstVisibleRow
 
void
setFirstVisibleRow(
[ in ] long nFirstVisibleRow );

Description
sets the first row that is visible in the pane.
getVisibleRange
 
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