Dear all,
In the ultragrid, I have the multiple line of desription field in the rows. How to set the row height to be auto size?? Is "\r\n" can split the description into different line of one record row??
description += "\r\n" + product[i].tostring();
Set UltraGrid.DisplayLayout.Override.RowSizing to 'AutoFree', and set the CellMultiLine property of the description column to true. I believe the cell does handle explicit line breaks, although you might want to use Environment.NewLine instead of hardcoded character sequences.