■ UltraGrid 클래스의 DisplayLayout 속성을 사용해 고정 요약 바닥글 행의 상대적 위치를 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 |
using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... this.ultraGrid.DisplayLayout.Override.AllowRowSummaries = AllowRowSummaries.True; this.ultraGrid.DisplayLayout.Override.SummaryDisplayArea = SummaryDisplayAreas.Top; this.ultraGrid.DisplayLayout.Override.SequenceSummaryRow = 3; |