Back to Devexpress

ListLevelProperties.Start Property

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-listlevelproperties-4209f8f6.md

latest3.3 KB
Original Source

ListLevelProperties.Start Property

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

Declaration

csharp
int Start { get; set; }
vb
Property Start As Integer

Property Value

TypeDescription
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

csharp
level.ParagraphProperties.FirstLineIndent = 75;
level.Start = 1;

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

csharp
level.ParagraphProperties.FirstLineIndent = 75;
level.Start = 1;

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

vb
level.ParagraphProperties.FirstLineIndent = 75
level.Start = 1
'Specify the roman format

wpf-richedit-document-api/VB/DXRichEditControlAPISample/CodeExamples/ListActions.vb#L56

vb
level.ParagraphProperties.FirstLineIndent = 75
level.Start = 1

word-document-api-examples/VB/CodeExamples/ListsActions.vb#L67

vb
level.ParagraphProperties.FirstLineIndent = 75
level.Start = 1
' Specify the numbering style for the list level.

See Also

ListLevelProperties Interface

ListLevelProperties Members

DevExpress.XtraRichEdit.API.Native Namespace