■ UltraGrid 클래스에서 특수 행 분리자를 표시하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 |
using Infragistics.Win; using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... this.ultraGrid.DisplayLayout.Override.SpecialRowSeparator = SpecialRowSeparator.FixedRows; this.ultraGrid.DisplayLayout.Override.SpecialRowSeparatorHeight = 25; this.ultraGrid.DisplayLayout.Override.BorderStyleSpecialRowSeparator = UIElementBorderStyle.Dashed; |