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