■ UltraGrid 클래스에서 마지막 행을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... UltraGridRow row = this.ultraGrid.GetRow(ChildRow.Last); |
■ UltraGrid 클래스에서 마지막 행을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... UltraGridRow row = this.ultraGrid.GetRow(ChildRow.Last); |