■ UltraGrid 클래스에서 그리드 제목을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using Infragistics.Win; using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... this.ultraGrid.DisplayLayout.CaptionVisible = DefaultableBoolean.True; this.ultraGrid.Text = "Customer Information"; |