constants group WindowArrange in module com::sun::star::frame::

(Global Index)

Syntax

constants group WindowArrange;

Description

These constants are used to specify a style of window arrangement.

Constants Summary

TILE arranges the windows in tiles.

VERTICAL arranges the windows vertically.

HORIZONTAL arranges the windows horizontally.

CASCADE cascades the windows.

MAXIMIZE maximizes all windows.

MINIMIZE minimizes all windows.

Field Details



TILE

Syntax

const short  TILE = 1;

Description

arranges the windows in tiles.


VERTICAL

Syntax

const short  VERTICAL = 2;

Description

arranges the windows vertically.


HORIZONTAL

Syntax

const short  HORIZONTAL = 3;

Description

arranges the windows horizontally.


CASCADE

Syntax

const short  CASCADE = 4;

Description

cascades the windows.


MAXIMIZE

Syntax

const short  MAXIMIZE = 5;

Description

maximizes all windows.


MINIMIZE

Syntax

const short  MINIMIZE = 6;

Description

minimizes all windows.

Top of Page