BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Private Sub GridDataBoundGrid1_CellClick(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs) Handles GridDataBoundGrid1.CellClick
Dim dTblColIdx As Integer
dTblColIdx = GridDataBoundGrid1.Binder.ColIndexToField(e.ColIndex)
Dim sName As String = GridDataBoundGrid1.Binder.InternalColumns(dTblColIdx).MappingName()
MsgBox(dt.Columns(sName).ColumnName)
End Sub
GridHierarchyLevel level0 = this.gridDataBoundGrid1.Binder.RootHierarchyLevel;
GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell;
int rowPos = this.gridDataBoundGrid1.Binder.RowIndexToPosition(cc.RowIndex);
int colPos = this.gridDataBoundGrid1.Binder.ColIndexToField(cc.ColIndex);
int field = level0.RowFieldToField(rowPos % level0.RowCountPerRecord, colPos);
Console.WriteLine(level0.InternalColumns[field].MappingName);