Back to Devexpress

ParagraphAlignment Enum

blazor-devexpress-dot-blazor-dot-richedit-c878e304.md

latest1.9 KB
Original Source

ParagraphAlignment Enum

Lists values that specify the paragraph alignment.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public enum ParagraphAlignment

Members

NameDescription
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.

|

The following properties accept/return ParagraphAlignment values:

Remarks

razor
<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.Alignment != ParagraphAlignment.Justify)
                        properties.Alignment = ParagraphAlignment.Justify;
                });
        }
        catch (OperationCanceledException e) {
            Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
        }
}

See Also

DevExpress.Blazor.RichEdit Namespace