AD
Administrator
Syncfusion Team
September 12, 2006 08:45 AM UTC
Hi Michael,
Use this code snippet to get the current column information in TableControlCurrentCellShowingDropDown event.
int index = e.TableControl.TableDescriptor.ColIndexToField(e.TableControl.CurrentCell.ColIndex);
Console.WriteLine("Current Column Name : " + e.TableControl.TableDescriptor.VisibleColumns[index].Name );
Best Regards,
Haneef