officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-paragraphpropertiesbase-07333b2b.md
Gets or sets the spacing after a paragraph.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
float? SpacingAfter { get; set; }
Property SpacingAfter As Single?
| Type | Description |
|---|---|
| Nullable<Single> |
The spacing after the paragraph measured in Document.Unit units, or null ( Nothing in Visual Basic), for a mixture of paragraphs with different spacings.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the SpacingAfter property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-rich-edit-text-formatting/CS/Text Formatting Example/Form1.cs#L74
titleParagraphFormatting.LeftIndent = Units.InchesToDocumentsF(0.5f);
titleParagraphFormatting.SpacingAfter = Units.InchesToDocumentsF(0.3f);
winforms-rich-edit-text-formatting/VB/Text Formatting Example/Form1.vb#L70
titleParagraphFormatting.LeftIndent = Units.InchesToDocumentsF(0.5F)
titleParagraphFormatting.SpacingAfter = Units.InchesToDocumentsF(0.3F)
See Also
BeginUpdateParagraphs(DocumentRange)
EndUpdateParagraphs(ParagraphProperties)
ParagraphPropertiesBase Interface