NumberingListBulletFormat Enum
Lists formats for numbering bullets.
Namespace: DevExpress.Docs.Presentation
Assembly: DevExpress.Docs.Presentation.v25.1.dll
NuGet Package: DevExpress.Docs.Presentation
Declaration
Members
| Name | Description | Image |
|---|---|---|
LowercaseLetterInParentheses
|
A bullet is displayed as a lowercase letter followed by a right parenthesis. |
|
UppercaseLetterInParentheses
|
A bullet is displayed as an uppercase letter followed by a right parenthesis. |
|
LowercaseLetterWithRightParenthesis
|
A bullet is displayed as a lowercase letter followed by a right parenthesis. |
|
UppercaseLetterWithRightParenthesis
|
A bullet is displayed as an uppercase letter followed by a right parenthesis. |
|
LowercaseLetterWithPeriod
|
A bullet is displayed as a lowercase letter followed by a period. |
|
UppercaseLetterWithPeriod
|
A bullet is displayed as an uppercase letter followed by a period. |
|
NumberInParentheses
|
A bullet is displayed as a number followed by a right parenthesis. |
|
NumberWithRightParenthesis
|
A bullet is displayed as a number followed by a right parenthesis. |
|
NumberWithPeriod
|
A bullet is displayed as a number followed by a period. |
|
NumberPlain
|
A bullet is displayed as a plain number. |
|
LowercaseRomanInParentheses
|
A bullet is displayed as a lowercase Roman numeral followed by a right parenthesis. |
|
UppercaseRomanInParentheses
|
A bullet is displayed as an uppercase Roman numeral followed by a right parenthesis. |
|
LowercaseRomanWithRightParenthesis
|
A bullet is displayed as a lowercase Roman numeral followed by a right parenthesis. |
|
UppercaseRomanWithRightParenthesis
|
A bullet is displayed as an uppercase Roman numeral followed by a right parenthesis. |
|
LowercaseRomanWithPeriod
|
A bullet is displayed as a lowercase Roman numeral followed by a period. |
|
UppercaseRomanWithPeriod
|
A bullet is displayed as an uppercase Roman numeral followed by a period. |
|
DoubleByteCircledNumber
|
A bullet is displayed as a circled number. |
|
WideBlackCircledNumber
|
A bullet is displayed as a wide circled number. |
|
WideWhiteCircledNumber
|
A bullet is displayed as a wide circled number. |
|
DoubleByteNumberWithPeriod
|
A bullet is displayed as a number followed by a period. |
|
DoubleByteNumberPlain
|
A bullet is displayed as a plain number. |
|
SimplifiedChineseNumberWithPeriod
|
A bullet is displayed as a number in Simplified Chinese followed by a period. |
|
SimplifiedChineseNumberPlain
|
A bullet is displayed as a plain number in Simplified Chinese. |
|
TraditionalChineseNumberWithPeriod
|
A bullet is displayed as a number in Traditional Chinese followed by a period. |
|
TraditionalChineseNumberPlain
|
A bullet is displayed as a plain number in Traditional Chinese. |
|
JapaneseChineseDoubleByteWithPeriod
|
A bullet is displayed as a double-byte number followed by a period. |
|
JapaneseKoreanNumberPlain
|
A bullet is displayed as a plain Japanese or Korean number. |
|
JapaneseKoreanNumberWithPeriod
|
A bullet is displayed as a Japanese or Korean number followed by a period. |
|
NumberWithLeadingMinus
|
A bullet is displayed as a number with a leading minus sign. |
|
NumberWithTrailingMinus
|
A bullet is displayed as a number with a trailing minus sign. |
|
HebrewNumberWithMinus
|
A bullet is displayed as a Hebrew number followed by a minus sign. |
|
ThaiLetterWithPeriod
|
A bullet is displayed as a Thai letter followed by a period. |
|
ThaiLetterWithRightParenthesis
|
A bullet is displayed as a Thai letter followed by a right parenthesis. |
|
ThaiLetterInParentheses
|
A bullet is displayed as a Thai letter followed by a right parenthesis. |
|
ThaiNumberWithPeriod
|
A bullet is displayed as a Thai number followed by a period. |
|
ThaiNumberWithRightParenthesis
|
A bullet is displayed as a Thai number followed by a right parenthesis. |
|
ThaiNumberInParentheses
|
A bullet is displayed as a Thai number followed by a right parenthesis. |
|
HindiLetterWithPeriod
|
A bullet is displayed as a Hindi letter followed by a period. |
|
HindiNumberWithPeriod
|
A bullet is displayed as a Hindi number followed by a period. |
|
HindiNumberWithRightParenthesis
|
A bullet is displayed as a Hindi number followed by a right parenthesis. |
|
HindiLetterStyle1WithPeriod
|
A bullet is displayed as a Hindi letter followed by a period. |
|
Related API Members
The following properties accept/return NumberingListBulletFormat values:
Remarks
The following code snippet configures a numbering bullet for a paragraph:
using DevExpress.Docs;
using DevExpress.Docs.Presentation;
using DevExpress.Drawing;
using System.Drawing;
namespace PresentationApiSample;
public class Program {
public static void Main(string[] _) {
Presentation presentation = new Presentation();
presentation.Slides.Clear();
Slide slide = new Slide(SlideLayoutType.Blank);
presentation.Slides.Add(slide);
Shape shape = new Shape(ShapeType.Rectangle, 30, 30, 2000, 1000);
slide.Shapes.Add(shape);
// Use a numbering bullet for a text paragraph
NumberingListBullet n_bullet = new NumberingListBullet(NumberingListBulletFormat.WideBlackCircledNumber, 1);
TextParagraph paragraph1 = new TextParagraph();
paragraph1.Properties.ListBullet = n_bullet;
paragraph1.Text = "Paragraph 1";
shape.TextArea.Paragraphs.Add(paragraph1);
}
}








































