AD
Administrator
Syncfusion Team
June 30, 2005 10:58 PM UTC
The only thing readily available is the description that you can get from the group.Category.
Group g = capRow.ParentGroup;
string sFieldName = g.Name;
Console.WriteLine("sFieldName= " + sFieldName);
string sFieldDesc = g.Category.ToString();
Console.WriteLine("sFieldDesc= " + sFieldDesc);
To get the field value that matches the g.Category which is the description, I think you would have to go directly to the lookup table, and find the record with the description value, and then get the other value you want from this record.