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

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

interface XViewFreezable

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

Description
enables a SpreadsheetView to freeze columns and rows of the view.


Known Services which Export this Interface

com::sun::star::sheet::SpreadsheetView a view of a spreadsheet document.

Methods' Summary

hasFrozenPanes returns true if the view has frozen panes.
freezeAtPosition freezes panes with the specified number of columns and rows.

Methods' Details

hasFrozenPanes
 
boolean
hasFrozenPanes();
Description
returns true if the view has frozen panes.

Only one of XViewSplitable::getIsWindowSplit() and XViewFreezable::hasFrozenPanes() can be true .

freezeAtPosition
 
void
freezeAtPosition(
[ in ] long nColumns,
[ in ] long nRows );

Description
freezes panes with the specified number of columns and rows.

To freeze only horizontally, specify nRows as 0. To freeze only vertically, specify nColumns as 0.


Top of Page