Skip to main content
A newer version of this page is available. .

Paragraph.FirstLineIndent Property

Gets the indent of the paragraph’s first line.

Namespace: DevExpress.Blazor.RichEdit

Assembly: DevExpress.Blazor.RichEdit.v21.2.dll

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public int? FirstLineIndent { get; }

Property Value

Type Description
Nullable<Int32>

The indent of the paragraph’s first line, in twips.

Remarks

The FirstLineIndent property is not in effect when the paragraph’s FirstLineIndentType property is set to None.

Use the ChangePropertiesAsync method to change the indent of a paragraph’s first line.

<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 cancelled. */
        try {
            documentAPI = richEdit.DocumentAPI;
            @* ... *@
            IReadOnlyList<Paragraph> paragraphs = await documentAPI.Paragraphs.GetAllAsync();     
            foreach (Paragraph p in paragraphs)
                await p.ChangePropertiesAsync(properties => {
                    if (p.FirstLineIndent != 350)
                        properties.FirstLineIndent = 350;
                });
                @* ... *@
        }
        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.

See Also