NumberingListBulletFormat Enum
Lists formats for numbering bullets.
Declaration
public enum NumberingListBulletFormat extends Enum<NumberingListBulletFormat> implements IIntEnum
Members
| Name | Description |
|---|---|
DOUBLE_BYTE_CIRCLED_NUMBER
|
A bullet is displayed as a circled number. |
DOUBLE_BYTE_NUMBER_PLAIN
|
A bullet is displayed as a plain number. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
DOUBLE_BYTE_NUMBER_WITH_PERIOD
|
A bullet is displayed as a number followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
HEBREW_NUMBER_WITH_MINUS
|
A bullet is displayed as a Hebrew number followed by a minus sign. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
HINDI_LETTER_STYLE_1_WITH_PERIOD
|
A bullet is displayed as a Hindi letter followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
HINDI_LETTER_WITH_PERIOD
|
A bullet is displayed as a Hindi letter followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
HINDI_NUMBER_WITH_PERIOD
|
A bullet is displayed as a Hindi number followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
HINDI_NUMBER_WITH_RIGHT_PARENTHESIS
|
A bullet is displayed as a Hindi number followed by a right parenthesis. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
JAPANESE_CHINESE_DOUBLE_BYTE_WITH_PERIOD
|
A bullet is displayed as a double-byte number followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
JAPANESE_KOREAN_NUMBER_PLAIN
|
A bullet is displayed as a plain Japanese or Korean number. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
JAPANESE_KOREAN_NUMBER_WITH_PERIOD
|
A bullet is displayed as a Japanese or Korean number followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
LOWERCASE_LETTER_IN_PARENTHESES
|
A bullet is displayed as a lowercase letter followed by a right parenthesis. |
LOWERCASE_LETTER_WITH_PERIOD
|
A bullet is displayed as a lowercase letter followed by a period. |
LOWERCASE_LETTER_WITH_RIGHT_PARENTHESIS
|
A bullet is displayed as a lowercase letter followed by a right parenthesis. |
LOWERCASE_ROMAN_IN_PARENTHESES
|
A bullet is displayed as a lowercase Roman numeral followed by a right parenthesis. |
LOWERCASE_ROMAN_WITH_PERIOD
|
A bullet is displayed as a lowercase Roman numeral followed by a period. |
LOWERCASE_ROMAN_WITH_RIGHT_PARENTHESIS
|
A bullet is displayed as a lowercase Roman numeral followed by a right parenthesis. |
NUMBER_IN_PARENTHESES
|
A bullet is displayed as a number followed by a right parenthesis. |
NUMBER_PLAIN
|
A bullet is displayed as a plain number. |
NUMBER_WITH_LEADING_MINUS
|
A bullet is displayed as a number with a leading minus sign. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
NUMBER_WITH_PERIOD
|
A bullet is displayed as a number followed by a period. |
NUMBER_WITH_RIGHT_PARENTHESIS
|
A bullet is displayed as a number followed by a right parenthesis. |
NUMBER_WITH_TRAILING_MINUS
|
A bullet is displayed as a number with a trailing minus sign. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
SIMPLIFIED_CHINESE_NUMBER_PLAIN
|
A bullet is displayed as a plain number in Simplified Chinese. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
SIMPLIFIED_CHINESE_NUMBER_WITH_PERIOD
|
A bullet is displayed as a number in Simplified Chinese followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
THAI_LETTER_IN_PARENTHESES
|
A bullet is displayed as a Thai letter followed by a right parenthesis. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
THAI_LETTER_WITH_PERIOD
|
A bullet is displayed as a Thai letter followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
THAI_LETTER_WITH_RIGHT_PARENTHESIS
|
A bullet is displayed as a Thai letter followed by a right parenthesis. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
THAI_NUMBER_IN_PARENTHESES
|
A bullet is displayed as a Thai number followed by a right parenthesis. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
THAI_NUMBER_WITH_PERIOD
|
A bullet is displayed as a Thai number followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
THAI_NUMBER_WITH_RIGHT_PARENTHESIS
|
A bullet is displayed as a Thai number followed by a right parenthesis. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
TRADITIONAL_CHINESE_NUMBER_PLAIN
|
A bullet is displayed as a plain number in Traditional Chinese. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
TRADITIONAL_CHINESE_NUMBER_WITH_PERIOD
|
A bullet is displayed as a number in Traditional Chinese followed by a period. PDF export does not support this bullet format. It is automatically converted to a numbered list. |
UPPERCASE_LETTER_IN_PARENTHESES
|
A bullet is displayed as an uppercase letter followed by a right parenthesis. |
UPPERCASE_LETTER_WITH_PERIOD
|
A bullet is displayed as an uppercase letter followed by a period. |
UPPERCASE_LETTER_WITH_RIGHT_PARENTHESIS
|
A bullet is displayed as an uppercase letter followed by a right parenthesis. |
UPPERCASE_ROMAN_IN_PARENTHESES
|
A bullet is displayed as an uppercase Roman numeral followed by a right parenthesis. |
UPPERCASE_ROMAN_WITH_PERIOD
|
A bullet is displayed as an uppercase Roman numeral followed by a period. |
UPPERCASE_ROMAN_WITH_RIGHT_PARENTHESIS
|
A bullet is displayed as an uppercase Roman numeral followed by a right parenthesis. |
WIDE_BLACK_CIRCLED_NUMBER
|
A bullet is displayed as a wide circled number. |
WIDE_WHITE_CIRCLED_NUMBER
|
A bullet is displayed as a wide circled number. |
fromValue(int value)
|
Converts an integer value to the corresponding |
getName()
|
Returns the name of this |
getValue()
|
Returns the integer value of this |
toString()
|
Returns a string representation of this |
valueOf(String name)
|
Returns the |
values()
|
Returns an array that contains all |
Remarks
The following code snippet configures a numbering bullet for a paragraph:
package presentation;
import com.devexpress.docs.presentation.*;
public class App {
public static void main(String[] args) throws Exception {
Presentation presentation = new Presentation();
presentation.getSlides().clear();
Slide slide = new Slide(SlideLayoutType.BLANK);
presentation.getSlides().add(slide);
Shape shape = new Shape(ShapeType.getRectangle(), 30, 30, 2000, 1000);
slide.getShapes().add(shape);
// Use a numbering bullet for a text paragraph
NumberingListBullet n_bullet = new NumberingListBullet(NumberingListBulletFormat.WIDE_BLACK_CIRCLED_NUMBER, (short)2);
TextParagraph paragraph1 = new TextParagraph();
paragraph1.getProperties().setListBullet(n_bullet);
paragraph1.setText("Paragraph 1");
shape.getTextArea().getParagraphs().add(paragraph1);
}
}