0

The width of the column is fixed,and I hope that the height of the Row can be adjusted automatically.

PS:
gridView1.OptionsView.RowAutoHeight = true; does not worked Thks

jack Chen
  • 11
  • 8

2 Answers2

0

Try the solution discussed in the below link. https://www.devexpress.com/Support/Center/Question/Details/A8/auto-height-of-grid-rows-and-text-wordwrap

esnezz
  • 619
  • 1
  • 7
  • 19
0

According to the help from the abrove,I make some summary to show the way to help more who face the same problems:

1.RepositoryItemMemoEdit Rme = new RepositoryItemMemoEdit(); 
2.Rme.WordWrap = true;
3.ColValue.ColumnEdit = Rme;(ColValue:DevExpress.XtraGrid.Columns.GridColumn)
4.RowAutoHeight = true;
jack Chen
  • 11
  • 8