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

(Global Index)

Syntax

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

Description

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

Method Summary

hasFrozenPanes returns true if the view has frozen panes.

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

Known Services Which Export this Interface

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

Method Details



hasFrozenPanes

Syntax

boolean hasFrozenPanes ();

Description

returns true if the view has frozen panes.

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


freezeAtPosition

Syntax

void freezeAtPosition (
long nColumns,
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