HA
haneefm
Syncfusion Team
June 15, 2007 04:20 PM UTC
Hi Tom,
You can use the Control.MouseButton property to get a value indicating which of the mouse buttons in a pressed state. Here is a code snippet
void gridGroupingControl1_TableControlCurrentCellControlDoubleClick(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlControlEventArgs e)
{
if (Control.MouseButtons == MouseButtons.Left)
{
Console.WriteLine("Left clicked");
}
}
Best regards,
Haneef