{description}
{excerpt}Sets or returns if text that is larger than the width of the cell will be wrapped, increasing the height of a cell.{excerpt}
{signature:C#}
 public boolean WrapText{ get; set; }
{signature}{signature:vb.net}
Public Property WrapText() As Boolean
{signature}
{example}{code:csharp|title=C#}

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

          //--- Set WrapText
          styl.WrapText = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Get WrapText
          Dim wrap As Boolean = styl.WrapText

          '--- Set WrapText
          styl.WrapText = True
        {code}

{example}