Table.SetWrap Method

Sets the wrap state of the specified cell. When true, the line of text is split (if it contain spaces) into more lines so that their lengths are less than cell width/>. When false, the line is truncated if it goes beyond the cell width"/>.
Public Sub SetWrap( _ 
ByVal row As Integer, _ 
ByVal col As Integer, _ 
ByVal value As Boolean
)
This language is not supported or no code example is available.
public void SetWrap( 
int row
int col
bool value 
)
This language is not supported or no code example is available.

Parameters

row
int

Row index

col
int

Column index

value
bool

Wrap status

Remarks
 
If the value is true and there are no spaces before the cell width of the text, the split is done at the first available space.

.NET Framework

Supported in: 4.5, 4.6, 4.7

In this article

Definition