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

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

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