C#: multiline text in DataGridView control

KeithDB picture KeithDB · Nov 10, 2009 · Viewed 71.7k times · Source

Is it possible for the DataGridView control to display multiline text in a cell?

I am using Visual Studio 2005 and C#.

Answer

bniwredyc picture bniwredyc · Nov 10, 2009

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)