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

ParagraphAlignment Enum

Lists values that specify the paragraph alignment.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public enum ParagraphAlignment

Members

Name Description
Left

The paragraph text is aligned to the left.

Right

The paragraph text is aligned to the right.

Center

The paragraph text is centered.

Justify

The paragraph text is justified.

Related API Members

The following properties accept/return ParagraphAlignment 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 cancelled. */
        try {
            documentAPI = richEdit.DocumentAPI;
            @* ... *@
            IReadOnlyList<Paragraph> paragraphs = await documentAPI.Paragraphs.GetAllAsync();     
            foreach (Paragraph p in paragraphs)
                await p.ChangePropertiesAsync(properties => {
                    if (p.Alignment != ParagraphAlignment.Justify)
                        properties.Alignment = ParagraphAlignment.Justify;
                });
                @* ... *@
        }
        catch (OperationCanceledException e) {
            Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
        }
}
See Also