Hi
I am using the following way to set cell value
e.Row.Cells[
"column"].Value = formattedText;
Please see the attachment.Text is cutting buttom of the portion .
I dont know how many lines user will add so i can't increase row size .
I am using AutoFit propery of grid.
Please advise how can I solve this issue.
Thanks
What event are you using to set the Value of the cell? I don't think the grid automatically resizes the row when the value changes. You probably just have to call PerformResize on the row in code after you set the Value.
I am calling it in
InitializeRow(
object sender, InitializeRowEventArgs e) even.
I tried e.Row.PerformAutoSize(); (I didn't see PerformResize).
But it didn't change any.