BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridGroupingControl1_TableControlCellClick(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCellClickEventArgs e) { GridRecord rec = this.gridGroupingControl1.Table.CurrentRecord as GridRecord; if(rec != null) { DataRowView drv = rec.GetData() as DataRowView; } }
>private void gridGroupingControl1_TableControlCellClick(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCellClickEventArgs e) >{ > GridRecord rec = this.gridGroupingControl1.Table.CurrentRecord as GridRecord; > if(rec != null) > { > DataRowView drv = rec.GetData() as DataRowView; > } >} >