Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

Sets or returns a boolean that represents if Word will automatically handle spacing below a paragraph.

Signature
C#
C#
 public boolean AfterAutoSpacing\{ get; set; \}
Signature
vb.net
vb.net
Public Property AfterAutoSpacing() As Boolean
Remarks

MS Word equivalent: Format menu > Paragraph... > Indents and Spacing tab > Spacing section > After:

Example
Code Block
csharp
csharp
titleC#

          //--- Return AfterAutoSpacing
          bool afterAutoSpacing = oParagraphFormatting.AfterAutoSpacing;

          //--- Set AfterAutoSpacing
          oParagraphFormatting.AfterAutoSpacing = true;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Return AfterAutoSpacing
          Dim afterAutoSpacing As Boolean = oParagraphFormatting.AfterAutoSpacing

          '--- Set AfterAutoSpacing
          oParagraphFormatting.AfterAutoSpacing = True