Back to Devexpress

Paragraph.SpacingAfter Property

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-paragraph-eea2a047.md

latest2.5 KB
Original Source

Paragraph.SpacingAfter Property

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

Declaration

csharp
public abstract float SpacingAfter { get; set; }
vb
Public MustOverride Property SpacingAfter As Single

Property Value

TypeDescription
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

csharp
paragraph.ListIndex = 0;
paragraph.SpacingAfter = 3;

word-document-api-insert-dynamic-content/VB/Module1.vb#L63

vb
paragraph.ListIndex = 0
paragraph.SpacingAfter = 3

See Also

SpacingBefore

Paragraph Class

Paragraph Members

DevExpress.XtraRichEdit.API.Native Namespace