Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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.

{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}
Signature
C#C#
Wiki Markup
{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}{signature:vb.net
vb.net
}
Public Property WrapText() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle