AD
Administrator
Syncfusion Team
March 14, 2007 08:09 AM UTC
Hi Ivan,
You can try handling the CellMouseHoverEnter and check for the CellType. If the CellType matches the NumericUpDown then suspend the painting.
private void gridControl1_CellMouseHoverEnter(object sender, GridCellMouseEventArgs e)
{
GridCurrentCell cc = this.gridControl1.CurrentCell;
if (this.gridControl1[cc.RowIndex, cc.ColIndex].CellType == GridCellTypeName.NumericUpDown)
{
Console.WriteLine("Suspend Painting");
}
}
Kindly let us know if this helps.
Best Regards,
Jeba.