DataGridViewCellStyle::WrapMode Property
.NET Framework (current version)
Gets or sets a value indicating whether textual content in a DataGridView cell is wrapped to subsequent lines or truncated when it is too long to fit on a single line.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property DataGridViewTriState WrapMode { DataGridViewTriState get(); void set(DataGridViewTriState value); }
Property Value
Type: System.Windows.Forms::DataGridViewTriStateOne of the DataGridViewTriState values. The default is NotSet.
| Exception | Condition |
|---|---|
| InvalidEnumArgumentException | The property value is not a valid DataGridViewTriState value. |
If WrapMode is False for a cell that contains text, the cell displays the text on a single line, and displays any embedded newline characters as box characters. If WrapMode is True for a cell that contains text, the cell displays newline characters as line breaks, but also wraps any lines that exceed the width of the cell.
.NET Framework
Available since 2.0
Available since 2.0
Show: