officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-listlevelproperties-4209f8f6.md
Gets or sets the starting number for the specified list level.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
int Start { get; set; }
Property Start As Integer
| Type | Description |
|---|---|
| Int32 |
The starting number.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Start 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#L59
level.ParagraphProperties.FirstLineIndent = 75;
level.Start = 1;
wpf-richedit-document-api/CS/DXRichEditControlAPISample/CodeExamples/ListActions.cs#L60
level.ParagraphProperties.FirstLineIndent = 75;
level.Start = 1;
winforms-richedit-document-api/VB/RichEditAPISample/CodeExamples/List.vb#L48
level.ParagraphProperties.FirstLineIndent = 75
level.Start = 1
'Specify the roman format
wpf-richedit-document-api/VB/DXRichEditControlAPISample/CodeExamples/ListActions.vb#L56
level.ParagraphProperties.FirstLineIndent = 75
level.Start = 1
word-document-api-examples/VB/CodeExamples/ListsActions.vb#L67
level.ParagraphProperties.FirstLineIndent = 75
level.Start = 1
' Specify the numbering style for the list level.
See Also