How to set DataGridView textbox column to multi-line?

.net, c#, datagridview, datagridviewcolumn

Solution

You should be able to achieve this by setting the `WrapMode` of the `DefaultCellStyle` of your `DataGridViewTextBoxColumn` to `true`.

Problem

How to let "`DataGridViewTextBoxColumn`" in `DataGridView` supports Multiline property?

Original source

Related problems