How do I show textbox column of a datagridview in multiline format us开发者_运维百科ing vb.net?
You have to set the WrapMode
property of the DefaultCellStyle
property of your DataGridViewTextBoxColumn
.
See here for details:
http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcellstyle.wrapmode.aspx
精彩评论