Skip to main content

ParagraphProperties.ContextualSpacing Property

Specifies whether to remove the additional space (contextual spacing) between paragraphs of the same style.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public bool? ContextualSpacing { get; set; }

Property Value

Type Description
Nullable<Boolean>

true to remove spacing between paragraphs of the same style; false to add spacing.

Remarks

Use the ContextualSpacing property to get whether the contextual spacing between paragraphs of the same style is removed.

<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.ContextualSpacing != false)
                        properties.ContextualSpacing = false;
                });
        }
        catch (OperationCanceledException e) {
            Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
        }
}
See Also