I am using this code, it is a bad example, but it works to test, but it ends up changing all rows.
I need only change the row selected.
if (e.Cell.Column.Layout.Override.RowSizingAutoMaxLines == 4)
{
e.Cell.Column.Layout.Override.RowSelectorStyle = Infragistics.Win.HeaderStyle.XPThemed;
e.Cell.Column.Layout.Override.RowSizingAutoMaxLines = 20;
}
else
{
e.Cell.Column.Layout.Override.RowSelectorStyle = Infragistics.Win.HeaderStyle.Default;
e.Cell.Column.Layout.Override.RowSizingAutoMaxLines = 4;
}
Setting the RowSizingAutoMaxLines on Override will set this to all the rows. What you can do instead is calculate the necessary row height and set it to the current row, assuming you have set beforehand RowSizing to Free or to AutoFree. You can use Graphics MeasureString to calculate the height of one row and set then each row's height like this:
First setup the grid:
Then measure one row and set the row's height: