Sets or returns a boolean that represents whether or not Word will center "exact line height" lines in this document.

 public boolean ExactOnTop{ get; set; }
Public Property ExactOnTop() As Boolean

This is set to false by default.

MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for [filename].doc section > Options > Don't center "exact line height" lines


          //--- Return ExactOnTop
          bool exactOnTop = cs.ExactOnTop;

          //--- Set ExactOnTop
          cs.ExactOnTop = true;
        

          '--- Return ExactOnTop
          Dim exactOnTop As Boolean = cs.ExactOnTop

          '--- Set ExactOnTop
          cs.ExactOnTop = True