How to set DataGridView textbox column to multi-line?

Wahid Bitar picture Wahid Bitar · Oct 13, 2009 · Viewed 81.5k times · Source

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

Answer

Tim S. Van Haren picture Tim S. Van Haren · Oct 13, 2009

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