Back to Devexpress

NumberingListBase.NumberingType Property

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-numberinglistbase.md

latest4.1 KB
Original Source

NumberingListBase.NumberingType Property

Get or sets the list type.

Namespace : DevExpress.XtraRichEdit.API.Native

Assembly : DevExpress.RichEdit.v25.2.Core.dll

NuGet Package : DevExpress.RichEdit.Core

Declaration

csharp
NumberingType NumberingType { get; set; }
vb
Property NumberingType As NumberingType

Property Value

TypeDescription
NumberingType

A NumberingType enumeration member specifying the type of a list.

|

Available values:

NameDescription
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

csharp
//Specify the list's type
list.NumberingType = NumberingType.Bullet;
ListLevel level = list.Levels[0];

wpf-richedit-document-api/CS/DXRichEditControlAPISample/CodeExamples/ListActions.cs#L22

csharp
//Specify the list's type
list.NumberingType = NumberingType.Bullet;
ListLevel level = list.Levels[0];

word-document-api-examples/CS/CodeExamples/ListsActions.cs#L32

csharp
// Specify the list type.
list.NumberingType = NumberingType.Bullet;

winforms-richedit-document-api/VB/RichEditAPISample/CodeExamples/List.vb#L19

vb
'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

vb
'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

vb
' Specify the list type.
list.NumberingType = DevExpress.XtraRichEdit.API.Native.NumberingType.Bullet
' Access the first list level.

See Also

NumberingListBase Interface

NumberingListBase Members

DevExpress.XtraRichEdit.API.Native Namespace