AD
Administrator
Syncfusion Team
August 25, 2005 08:08 AM UTC
Given a GridRecord, rec, you can use code like this to test to see if it is expanded or has child records:
Console.WriteLine(rec.IsExpanded);
Console.WriteLine(rec.NestedTables.Count > 0 && rec.NestedTables[0].Records.Count> 0);