Top   Module   Use   Manual   Index 

com :: sun :: star :: sheet ::

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

const long VALUE = = 1;
Description
selects constant numeric values that are not formatted as dates or times.
const long DATETIME = = 2;
Description
selects constant numeric values that have a date or time number format.
const long STRING = = 4;
Description
selects constant strings.
const long ANNOTATION = = 8;
Description
selects cell annotations.
const long FORMULA = = 16;
Description
selects formulas.
const long HARDATTR = = 32;
Description
selects all explicit formatting, but not the formatting which is applied implicitly through style sheets.
const long STYLES = = 64;
Description
selects cell styles.
const long OBJECTS = = 128;
Description
selects drawing objects.
const long EDITATTR = = 256;
Description
selects formatting within parts of the cell contents.
Top of Page