Some how i am not able to respond to my previous post. "i am not getting Post Update Button to post me response". so i am creating a new post.
My first concern is i have to resize the row height on load but not on user action.
and the resize to fit is not working when cell type is "RichText" . i am able to resize height if cell type is "not Richtext".
Below is my question and answer given by Ragamathulla
venkatesh at 2/8/2012 10:59:00 AM
I am using Grid which is extended from "Winforms Syncfusion GridDataBoundGrid" and gird contains one column(cells) which is of type Richtext. So each and every row height will be different depending on the content of the Rich text cell.
I need to re-size the row depending on that content. i am able to increase the height of the row if the cell is not rich text using following code
i am using following code to resize row height...
_currentGrid.Model.RowHeights.ResizeToFit(GridRangeInfo.Table(), GridResizeToFitOptions.NoShrinkSize);
This is working when there is now cell of type RichText.. if i change a cell to RichText then above code is not resizing row height.
Ragamathulla B[Syncfusion] at 2/9/2012 7:31:53 AM
Hi Venkatesh,
Thank you for your interest in syncfusion products
You can resize the RowHeight when the current cell as accept the change by using ‘CurrentCellAcceptedChanges’ event. The following code explains the same.
void grid_CurrentCellAcceptedChanges(object sender, CancelEventArgs e)
{
this.grid.Model.RowHeights.ResizeToFit(GridRangeInfo.Cell(this.grid.CurrentCell.RowIndex, this.grid.CurrentCell.ColIndex));
}
Hope this will be helpful for your references.
http://help.syncfusion.com/ug_94/User%20Interface/Windows%20Forms/Grid/Documents/414148resizetofit.htmPlease refer to the following sample which illustrates the same