Returns or sets a boolean that represents if Word will prevent text from wrapping in this table cell.

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

This is set to false by default.

MS Word equivalent: Table menu > Table Properties... > Cell tab > Options... button > Options section > Wrap text


          //--- Return NoWrap
          bool noWrap = cell.NoWrap;

          //--- Set NoWrap
          cell.NoWrap = true;
        

          '--- Return NoWrap
          Dim noWrap As Boolean = cell.NoWrap

          '--- Set NoWrap
          cell.NoWrap = True