Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Sets or returns a boolean that represents if Word will not add extra space raised or lowered characters.

Signature
C#
C#

 public boolean NoSpaceForRaisedLower{ get; set; }
Signature
vb.net
vb.net

Public Property NoSpaceForRaisedLower() As Boolean
Remarks

MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for [filename].doc section > Options > Don't add extra space for raised/lowered characters

Example
Code Block
csharp
csharp
titleC#
            //--- Return NoSpaceForRaisedLower
          bool noSpaceForRaisedLower = cs.NoSpaceForRaisedLower;

          //--- Set NoTabForIndent
          cs.NoSpaceForRaisedLower = true;
        
Code Block
vb.net
vb.net
titlevb.net
            '--- Return NoSpaceForRaisedLower
          Dim noSpaceForRaisedLower As Boolean = cs.NoSpaceForRaisedLower

          '--- Set NoSpaceForRaisedLower
          cs.NoSpaceForRaisedLower = True