officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-paragraph-eea2a047.md
Gets or sets the spacing after the current paragraph.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
public abstract float SpacingAfter { get; set; }
Public MustOverride Property SpacingAfter As Single
| Type | Description |
|---|---|
| Single |
A Single value representing the spacing after the paragraph, measured in Document.Unit units.
|
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.
word-document-api-insert-dynamic-content/CS/Program.cs#L75
paragraph.ListIndex = 0;
paragraph.SpacingAfter = 3;
word-document-api-insert-dynamic-content/VB/Module1.vb#L63
paragraph.ListIndex = 0
paragraph.SpacingAfter = 3
See Also