■ UltraGrid 클래스에서 모든 행을 확장하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... this.ultraGrid.DisplayLayout.ViewStyleBand = ViewStyleBand.OutlookGroupBy; this.ultraGrid.DisplayLayout.Bands[0].SortedColumns.Add("Country", false, true); this.ultraGrid.DisplayLayout.Bands[0].SortedColumns.Add("City" , false, true); this.ultraGrid.Rows.ExpandAll(true); |