Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

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

Signature
C#
C#
 public boolean NoWrap{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property NoWrap() As Boolean
{signature}
{remarks}This is set to {{false}} by default.

MS Word equivalent: Table menu > Table 
Remarks

This is set to false by default.

MS Word equivalent: Table menu > Table Properties...

>

Cell

tab

>

Options...

button

>

Options

section

>

Wrap

text {remarks} {example}{code:csharp|title=C#}

text

Example
Code Block
csharp
csharp
titleC#


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

          //--- Set NoWrap
          cell.NoWrap = true;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

          '--- Set NoWrap
          cell.NoWrap = True
        
{code} {example}