FirstLineIndentType Enum
Lists values that specify the indent type for the first line in a paragraph.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public enum FirstLineIndentType
Members
Name | Description |
---|---|
None
|
The first line of a paragraph does not have any indent. |
Indented
|
The first line of a paragraph is indented to the right. |
Hanging
|
The first line of a paragraph is indented to the left. |
Related API Members
The following properties accept/return FirstLineIndentType values:
Remarks
<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;
IReadOnlyList<Paragraph> paragraphs = await documentAPI.Paragraphs.GetAllAsync();
foreach (Paragraph p in paragraphs)
await p.ChangePropertiesAsync(properties => {
if (p.FirstLineIndentType != FirstLineIndentType.Indented)
properties.FirstLineIndentType = FirstLineIndentType.Indented;
});
}
catch (OperationCanceledException e) {
Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
}
}
See Also