Back to Devexpress

ParagraphProperties.LineSpacing Property

blazor-devexpress-dot-blazor-dot-richedit-dot-paragraphproperties-09cdb404.md

latest2.3 KB
Original Source

ParagraphProperties.LineSpacing Property

Specifies a line spacing value.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public float? LineSpacing { get; set; }

Property Value

TypeDescription
Nullable<Single>

The line spacing.

|

Remarks

The LineSpacing property is in effect when the LineSpacingType property value is set to Exactly, AtLeast, or Multiple. For the Exactly and AtLeast types, the value is set in twips.

Use the LineSpacing property to get a paragraph’s line spacing value.

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.LineSpacing != 300)
                        properties.LineSpacing = 300;
                });
        }
        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

ParagraphProperties Class

ParagraphProperties Members

DevExpress.Blazor.RichEdit Namespace