BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridControl1_ClearingCells(object sender, GridClearingCellsEventArgs e) { GridCurrentCell cc = this.gridControl1.CurrentCell; if(cc.RangeInfo == e.RangeList.ActiveRange && this.gridControl1[cc.RowIndex, cc.ColIndex].CellType == "TextBox") { e.Handled = true; } }