ListLevel.FirstLineIndent Property
Gets the first line indent of the list level’s paragraphs.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public int FirstLineIndent { get; }
Property Value
Type | Description |
---|---|
Int32 | The first line indent, in twips. |
Remarks
Use the list’s ChangeLevelPropertiesAsync(Int32, Action<ListLevelProperties>, CancellationToken) method to change the first line indent of a list level’s paragraphs.
<DxRichEdit @ref="richEdit" />
@code {
DxRichEdit richEdit;
Document documentAPI;
/* Surround the code that contains an asynchronous operation with a try-catch block to handle
the OperationCanceledException. This exception is thrown when an asynchronous operation is canceled. */
try {
documentAPI = richEdit.DocumentAPI;
List multiLevelList = await documentAPI.Lists.CreateAsync(ListType.MultiLevel);
IReadOnlyList<ListLevel> listLevels = multiLevelList.ListLevels;
ListLevel firstLevel = listLevels[0];
await multiLevelList.ChangeLevelPropertiesAsync(0, properties => {
if (firstLevel.FirstLineIndent != 500)
properties.FirstLineIndent = 500;
});
}
catch (OperationCanceledException e) {
Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
}
}
Use methods of the UnitConverter class to convert centimeters, inches, pixels, or points to twips.
The FirstLineIndent
property is not in effect in the following cases:
- The list level’s FirstLineIndentType property is set to
None
. - A paragraph’s FirstLineIndentType property is set to a value other than
None
.
See Also