ARRANGE.ALL macro

Equivalent to clicking the Arrange command on the Window menu. Rearranges open windows and icons and resizes open windows. Also can be used to synchronize scrolling of windows of the active sheet.

Syntax

ARRANGE.ALL(arrange_num, active_doc, sync_horiz, sync_vert)

ARRANGE.ALL?(arrange_num, active_doc, sync_horiz, sync_vert)

Arrange_num    is a number from 1 to 7 specifying how to arrange the windows.

Arrange_num Result
1 or omitted Tiled (also used to arrange icons in Microsoft Excel for Windows)
2 Horizontal
3 Vertical
4 None
5 Horizontally arranges and sizes the windows based on the position of the active cell.
6 Vertically arranges and sizes the windows based on the position of the active cell.
7 Arranges windows so that they cascade from the upper left to the bottom right of the application workspace.

If you want to change whether the windows are synchronized for scrolling but not how they are arranged, make sure arrange_num is 4.

Active_doc    is a logical value specifying which windows to arrange. If active_doc is TRUE, Microsoft Excel arranges only windows on the active workbook; if FALSE or omitted, all open windows are arranged.

Sync_horiz    is a logical value corresponding to the Sync Horizontal check box in Microsoft Excel version 4.0.

 

Sync_vert    is a logical value corresponding to the Sync Vertical check box in Microsoft Excel version 4.0.

 

Note   If arguments are omitted in the dialog box form of this function, the default values are the previous settings, if any; otherwise the default values are as described above.

Remarks

 

Tip   You can use synchronized horizontal or vertical scrolling when you need to scroll while viewing macro formulas in one window and corresponding macro values in another window of the same macro sheet.

Related Function

ACTIVATE   Switches to a window

Return to index