■ UltraGrid 클래스에서 자식 행을 갖는지 조사하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... UltraGridRow row = this.ultraGrid.GetRow(ChildRow.First); if(row.HasChild()) { UltraGridRow childRow = row.GetChild(ChildRow.First); MessageBox.Show("Has a Child"); } else { MessageBox.Show("Has no Child"); } |