enum CellDeleteMode in module com::sun::star::sheet::

(Global Index)

Syntax

enum CellDeleteMode;

Description

used to specify how cells are moved when cells are deleted.

Values Summary

NONE no cells are moved.

UP the cells below the deleted cells are moved up.

LEFT the cells to the right of the deleted cells are moved left.

ROWS entire rows below the deleted cells are moved up.

COLUMNS entire columns to the right of the deleted cells are moved left.

Values Details



NONE

Syntax

NONE,

Description

no cells are moved.


UP

Syntax

UP,

Description

the cells below the deleted cells are moved up.


LEFT

Syntax

LEFT,

Description

the cells to the right of the deleted cells are moved left.


ROWS

Syntax

ROWS,

Description

entire rows below the deleted cells are moved up.


COLUMNS

Syntax

COLUMNS,

Description

entire columns to the right of the deleted cells are moved left.

Top of Page