Worksheet::setSelection (Previous) (Next) Worksheet::thawPanes

View this page in Last updated: Sun, 31 Aug 2008
English | Dutch | French | German | Hungarian | Japanese | Polish | Russian | Spanish | Plain HTML

Worksheet::freezePanes

Worksheet::freezePanes -- Set panes and mark them as frozen.

Beschreibung

Set panes and mark them as frozen. One can use this method to mark certain regions in the worksheet so that they are „frozen“ in the sense that when scrolling through the worksheet these regions are not affected by the scrolling and remain where they are on the screen. This is the same functionality as provided by Microsoft Excel through the Window+Freeze Panes menu command.

Parameter

  • array $panes - This is the only parameter received and is composed of the following: 0 => Vertical split position, 1 => Horizontal split position 2 => Top row visible 3 => Leftmost column visible 4 => Active pane

Hinweise

Diese Methode kann nicht statisch aufgerufen werden.

Worksheet::setSelection (Previous) (Next) Worksheet::thawPanes

Download Documentation Last updated: Sun, 31 Aug 2008
Do you think that something on this page is wrong? Please file a bug report or add a note.
User Notes:
Note by: alexdesktop@example.com
$worksheet->freezePanes(array(6, 0));
will give notices about offsets 2 and 3.

Instead, use :

$worksheet->freezePanes(array(6, 0, 0, 0));

as specified here :
http://pear.php.net/bugs/bug.php?id=7315