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
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} that toggles the suppression of line spacing like Word 5 for Mac.{excerpt}
{signature:C#}
 public boolean SuppressSpacingLike5{ get; set; }
{signature}{signature:vb.net}
Public Property SuppressSpacingLike5() As Boolean
{signature}
{remarks}MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for \[filename\].doc section > Options > Suppress extra line spacing at top of page like Word 5.x for the Mac

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

          //--- Return SuppressSpacingLike5
          bool suppressSpacingLike5 = cs.SuppressSpacingLike5;

          //--- Set SuppressSpacingLike5
          cs.SuppressSpacingLike5 = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Return SuppressSpacingLike5
          Dim suppressSpacingLike5 As Boolean = cs.SuppressSpacingLike5

          '--- Set SuppressSpacingLike5
          cs.SuppressSpacingLike5 = True
        {code}

{example}