■ UltraGridBand 클래스에서 자식 밴드 수를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
using Infragistics.Win.UltraWinGrid; #region 자식 밴드 수 구하기 - GetChildBandCount(ultraGridBand) /// <summary> /// 자식 밴드 수 구하기 /// </summary> /// <param name="ultraGridBand">UltraGridBand</param> /// <returns>자식 밴드 수</returns> private int GetChildBandCount(UltraGridBand ultraGridBand) { int childBandCount = 0; foreach(UltraGridColumn ultraGridColumn in ultraGridBand.Columns) { if(ultraGridColumn.IsChaptered) { childBandCount = childBandCount + 1; } } return childBandCount; } #endregion |