officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-numberinglistbase.md
Get or sets the list type.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
NumberingType NumberingType { get; set; }
Property NumberingType As NumberingType
| Type | Description |
|---|---|
| NumberingType |
A NumberingType enumeration member specifying the type of a list.
|
Available values:
| Name | Description |
|---|---|
| Simple |
Simple numeric list.
| | MultiLevel |
Mixed numeric and outlined list.
| | Bullet |
Bulleted list.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the NumberingType property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-richedit-document-api/CS/RichEditAPISample/CodeExamples/List.cs#L22
//Specify the list's type
list.NumberingType = NumberingType.Bullet;
ListLevel level = list.Levels[0];
wpf-richedit-document-api/CS/DXRichEditControlAPISample/CodeExamples/ListActions.cs#L22
//Specify the list's type
list.NumberingType = NumberingType.Bullet;
ListLevel level = list.Levels[0];
word-document-api-examples/CS/CodeExamples/ListsActions.cs#L32
// Specify the list type.
list.NumberingType = NumberingType.Bullet;
winforms-richedit-document-api/VB/RichEditAPISample/CodeExamples/List.vb#L19
'Specify the list's type
list.NumberingType = DevExpress.XtraRichEdit.API.Native.NumberingType.Bullet
Dim level As DevExpress.XtraRichEdit.API.Native.ListLevel = list.Levels(0)
wpf-richedit-document-api/VB/DXRichEditControlAPISample/CodeExamples/ListActions.vb#L19
'Specify the list's type
list.NumberingType = NumberingType.Bullet
Dim level As ListLevel = list.Levels(0)
word-document-api-examples/VB/CodeExamples/ListsActions.vb#L30
' Specify the list type.
list.NumberingType = DevExpress.XtraRichEdit.API.Native.NumberingType.Bullet
' Access the first list level.
See Also