GridGroupingControl row height resizing

I want to turn of row height resizing in GridGroupingControl.
How can I do it?
Please help as soon as possible.

1 Reply

RA Rajagopal Syncfusion Team June 22, 2007 06:24 PM UTC

Hi Vladymyr,

You need to catch the gridGroupingControl.TableControlResizingRows event to turn off resizing rows in gridgroupingcontrol. Below is the code snippet.

void gridGroupingControl1_TableControlResizingRows(object sender, GridTableControlResizingRowsEventArgs e)
{
e.Inner.Cancel = true;
}

FYI, by default, the GridGroupingControl does not support rows with individualized rowheights. To get this support, you need to add a custom GridEngine as in this sample.
\\Syncfusion\EssentialStudio\5.1\Windows\Grid.Grouping.Windows\Samples\2.0\FeatureSamples\ResizableRows

Thanks for using Syncfusion Products.
Have a nice time.

Regards,
Rajagopal

Loader.
Up arrow icon