Top   Module   Use   Manual   Index 

com :: sun :: star :: style ::

constants group NumberingType


Description
These constants are used to specify which numbering style is used.


Constants

const short CHARS_UPPER_LETTER = = 0;
Description
Numbering is put in upper case letters as "A, B, C, D, ...".
const short CHARS_LOWER_LETTER = = 1;
Description
Numbering is in lower case letters as "a, b, c, e,...".
const short ROMAN_UPPER = = 2;
Description
Numbering is in Roman numbers with upper case letters as "I, II, III, IV, ...".
const short ROMAN_LOWER = = 3;
Description
Numbering is in Roman numbers with lower case letters as "i, ii, iii, iv, ...".
const short ARABIC = = 4;
Description
Numbering is in Arabic numbers as "1, 2, 3, 4, ...".
const short NUMBER_NONE = = 5;
Description
Numbering is invisible.
const short CHAR_SPECIAL = = 6;
Description
Use a character from a specified font.
const short PAGE_DESCRIPTOR = = 7;
Description
Numbering is specified in the page style.
const short BITMAP = = 8;
Description
Numbering is displayed as a bitmap graphic.
const short CHARS_UPPER_LETTER_N = = 9;
Description
Numbering is put in upper case letters as "A, B, ..., Y, Z, AA, BB, CC, ... AAA, ...".
const short CHARS_LOWER_LETTER_N = =10;
Description
Numbering is put in lower case letters as "a, b, ..., y, z, aa, bb, cc, ... aaa, ...".
const short TRANSLITERATION = = 11;
Description
a transliteration module will be used to produce numbers in chinese, japanese, etc.
Top of Page