Sets or returns a boolean that represents whether or not Word will align table rows independently of one another in this document.

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

MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for [filename].doc section > Options > Align table rows independently

          //--- Return AlignRowsIndependent
          bool alignRowsIndependent = cs.AlignRowsIndependent;

          //--- Set AlignRowsIndependent
          cs.AlignRowsIndependent = true;
        
          '--- Return AlignRowsIndependent
          Dim alignRowsIndependent As Boolean = cs.AlignRowsIndependent

          '--- Set AlignRowsIndependent
          cs.AlignRowsIndependent = True