Is it possible for the DataGridView control to display multiline text in a cell?
I am using Visual Studio 2005 and C#.
You should set DefaultCellStyle.WrapMode property of column to DataGridViewTriState.True. After that text in cells will be displayed correctly.
Example (DataGridView with one column):
dataGridView1.Columns[0].DefaultCellStyle.WrapMode = DataGridViewTriState.True; dataGridView1.Rows.Add("test" + Environment.NewLine + "test");   (Environment.NewLine = \r\n in Windows)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With