BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridControl1_QueryCellInfo(object sender, Syncfusion.Windows.Forms.Grid.GridQueryCellInfoEventArgs e) { if(_flipped && e.ColIndex > -1 && e.RowIndex > -1) { if(this.gridControl1.Data[e.ColIndex, e.RowIndex] != null) { e.Style.ModifyStyle(this.gridControl1.Data[e.ColIndex, e.RowIndex], Syncfusion.Styles.StyleModifyType.Override); } e.Handled = true; } }