BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.sfDataGrid.CurrentCellBeginEdit += sfDataGrid_CurrentCellBeginEdit;
void sfDataGrid_CurrentCellBeginEdit(object sender, Syncfusion.WinForms.DataGrid.Events.CurrentCellBeginEditEventArgs e)
{
if ((e.DataRow.RowData as OrderInfo).OrderID == 10002)
e.Cancel = true;
} |