How to set DataGridView textbox column to multi-line?
How to let " DataGridViewTextBoxColumn " in DataGridView supports Multiline property ? You should be able to achieve this by setting the WrapMode of the DefaultCellStyle of your DataGridViewTextBoxColumn to true . Tom Faust I have found that there are two things that you need to do, both in the designer, to make a text cell show multiple lines. As Tim S. Van Haren mentioned, you need to set WrapMode of the DefaultCellStyle of your DataGridViewTextBoxColumn to true . And although that does make the text wrap, it doesn't make the row expand to show anything beyond the first line. In addition to