constants group CellFlags in module com::sun::star::sheet::

(Global Index)

Syntax

constants group CellFlags;

Description

These constants select different types of cell contents.

The values can be combined. They are used to insert, copy, or delete contents.

Constants Summary

VALUE This value selects constant numeric values that are not formatted as dates or times.

DATETIME This value selects constant numeric values that have a date or time number format.

STRING This value selects constant strings.

ANNOTATION This value selects cell annotations.

FORMULA This value selects formulas.

HARDATTR This value selects all explicit formatting, but not the formatting which is applied implicitly through style sheets.

STYLES This value selects cell styles.

OBJECTS This value selects drawing objects.

EDITATTR This value selects formatting within parts of the cell contents.

Field Details



VALUE

Syntax

const long  VALUE = 1;

Description

This value selects constant numeric values that are not formatted as dates or times.


DATETIME

Syntax

const long  DATETIME = 2;

Description

This value selects constant numeric values that have a date or time number format.


STRING

Syntax

const long  STRING = 4;

Description

This value selects constant strings.


ANNOTATION

Syntax

const long  ANNOTATION = 8;

Description

This value selects cell annotations.


FORMULA

Syntax

const long  FORMULA = 16;

Description

This value selects formulas.


HARDATTR

Syntax

const long  HARDATTR = 32;

Description

This value selects all explicit formatting, but not the formatting which is applied implicitly through style sheets.


STYLES

Syntax

const long  STYLES = 64;

Description

This value selects cell styles.


OBJECTS

Syntax

const long  OBJECTS = 128;

Description

This value selects drawing objects.


EDITATTR

Syntax

const long  EDITATTR = 256;

Description

This value selects formatting within parts of the cell contents.

Top of Page