How to Find DisplayElement Type in WinForms GridGroupingControl
18 Nov 20181 minute to read
You can find the type of particular DisplayElement using the code below.
//Accesses the type of display element.
Console.WriteLine(this.gridGroupingControl1.Table.DisplayElements[rowIndex].Kind);'Accesses the type of display element.
Console.WriteLine(Me.gridGroupingControl1.Table.DisplayElements(rowIndex).Kind)