Back to Devexpress

ParagraphPropertiesBase.SpacingAfter Property

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-paragraphpropertiesbase-07333b2b.md

latest3.3 KB
Original Source

ParagraphPropertiesBase.SpacingAfter Property

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

Declaration

csharp
float? SpacingAfter { get; set; }
vb
Property SpacingAfter As Single?

Property Value

TypeDescription
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

csharp
titleParagraphFormatting.LeftIndent = Units.InchesToDocumentsF(0.5f);
titleParagraphFormatting.SpacingAfter = Units.InchesToDocumentsF(0.3f);

winforms-rich-edit-text-formatting/VB/Text Formatting Example/Form1.vb#L70

vb
titleParagraphFormatting.LeftIndent = Units.InchesToDocumentsF(0.5F)
titleParagraphFormatting.SpacingAfter = Units.InchesToDocumentsF(0.3F)

See Also

SpacingBefore

Unit

BeginUpdateParagraphs(DocumentRange)

EndUpdateParagraphs(ParagraphProperties)

ParagraphPropertiesBase Interface

ParagraphPropertiesBase Members

DevExpress.XtraRichEdit.API.Native Namespace