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}{signature:
}
Signature
vb.net
vb.net
Public Property AfterAutoSpacing() As Boolean
{signature}
{remarks}MS Word 
Remarks

MS Word equivalent:

Format

menu

>

Paragraph...

>

Indents

and

Spacing

tab

>

Spacing

section

>

After:

{remarks} {example}{code:csharp|title=C#}

Example
Code Block
csharp
csharp
titleC#


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

          //--- Set AfterAutoSpacing
          oParagraphFormatting.AfterAutoSpacing = true;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

          '--- Set AfterAutoSpacing
          oParagraphFormatting.AfterAutoSpacing = True
        
{code} {example}