How To Find DisplayElement Type
3 Jan 20201 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)