ParagraphProperties.SpacingBefore Property
Specifies the spacing before the paragraph.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public int? SpacingBefore { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> | The spacing before the paragraph, in twips. |
Remarks
Use the SpacingBefore property to get the spacing before a paragraph.
<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.SpacingBefore != 100)
properties.SpacingBefore = 100;
});
}
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