DataGrid.Select メソッド (Int32)
指定した行を選択します。
Overloads Public Sub Select( _
ByVal row As Integer _)
[C#]
public void Select(introw);
[C++]
public: void Select(introw);
[JScript]
public function Select(
row : int);
パラメータ
- row
選択する行のインデックス。
使用例
' Select the first row.
Private Sub button7_Click(ByVal sender As Object, ByVal e As EventArgs) Handles button7.Click
myDataGrid.Select(0)
End Sub 'button7_Click
' Check if the first row is selected.
Private Sub button8_Click(ByVal sender As Object, ByVal e As EventArgs) Handles button8.Click
If myDataGrid.IsSelected(0) Then
MessageBox.Show("Row selected", "Message", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
Else
MessageBox.Show("Row not selected", "Message", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
End If
End Sub 'button8_Click
' Deselect the first row.
Private Sub button11_Click(ByVal sender As Object, ByVal e As EventArgs) Handles button11.Click
myDataGrid.UnSelect(0)
End Sub 'button11_Click
[C#]
// Select the first row.
private void button7_Click(object sender, EventArgs e)
{
myDataGrid.Select(0);
}
// Check if the first row is selected.
private void button8_Click(object sender, EventArgs e)
{
if(myDataGrid.IsSelected(0))
{
MessageBox.Show("Row selected",
"Message", MessageBoxButtons.OK,
MessageBoxIcon.Exclamation);
}
else
{
MessageBox.Show("Row not selected",
"Message", MessageBoxButtons.OK,
MessageBoxIcon.Exclamation);
}
}
// Deselect the first row.
private void button11_Click(object sender, EventArgs e)
{
myDataGrid.UnSelect(0);
}
[C++]
private:
// Select the first row.
void button7_Click(Object* /*sender*/, EventArgs* /*e*/) {
myDataGrid->Select(0);
}
private:
// Check if the first row is selected.
void button8_Click(Object* /*sender*/, EventArgs* /*e*/) {
if (myDataGrid->IsSelected(0)) {
MessageBox::Show(S"Row selected",
S"Message", MessageBoxButtons::OK,
MessageBoxIcon::Exclamation);
} else {
MessageBox::Show(S"Row not selected",
S"Message", MessageBoxButtons::OK,
MessageBoxIcon::Exclamation);
}
}
// Deselect the first row.
void button11_Click(Object* /*sender*/, EventArgs* /*e*/) {
myDataGrid->UnSelect(0);
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
DataGrid クラス | DataGrid メンバ | System.Windows.Forms 名前空間 | DataGrid.Select オーバーロードの一覧