Sets or returns if text that is larger than the width of the cell will be wrapped, increasing the height of a cell.

<p> public boolean WrapText{ get; set; }</p>
<p>Public Property WrapText() As Boolean</p>

          //--- Get WrapText
          bool wrap = styl.WrapText;

          //--- Set WrapText
          styl.WrapText = true;
        
          '--- Get WrapText
          Dim wrap As Boolean = styl.WrapText

          '--- Set WrapText
          styl.WrapText = True