■ DataGridView 클래스에서 선택 행/열 값을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
using System.Windows.Forms; private DataGridView dataGridView; ... // 선택한 셀들을 조회한다. foreach(DataGridViewCell cell in this.dataGridView.SelectedCells) { ... } // 선택한 행들을 조회한다. foreach(DataGridViewRow row in this.dataGridView.SelectedRows) { ... } // 특정 셀을 선택한다. this.dataGridView[10, 10].Selected = true; // 모든 선택을 취소한다. this.dataGridView.ClearSelection(); |