DataGridView.SelectedRows プロパティ

定義

ユーザーが選択した行のコレクションを取得します。

public:
 property System::Windows::Forms::DataGridViewSelectedRowCollection ^ SelectedRows { System::Windows::Forms::DataGridViewSelectedRowCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.DataGridViewSelectedRowCollection SelectedRows { get; }
[<System.ComponentModel.Browsable(false)>]
member this.SelectedRows : System.Windows.Forms.DataGridViewSelectedRowCollection
Public ReadOnly Property SelectedRows As DataGridViewSelectedRowCollection

プロパティ値

ユーザーが選択した行を格納している DataGridViewSelectedRowCollection

属性

次のコード例では、 イベントで プロパティを使用する SelectedRows 方法を UserDeletingRow 示します。 この例では、最初の行がコレクションに SelectedRows 含まれている場合、削除は取り消されます。 この例は、 イベントで使用できる大きな例の SelectionChanged 一部です。

private void DataGridView1_UserDeletingRow(object sender,
    DataGridViewRowCancelEventArgs e)
{
    DataGridViewRow startingBalanceRow = DataGridView1.Rows[0];

    // Check if the Starting Balance row is included in the selected rows
    if (DataGridView1.SelectedRows.Contains(startingBalanceRow))
    {
        // Do not allow the user to delete the Starting Balance row.
        MessageBox.Show("Cannot delete Starting Balance row!");

        // Cancel the deletion if the Starting Balance row is included.
        e.Cancel = true;
    }
}
Private Sub UserDeletingRow(ByVal sender As Object, _
    ByVal e As DataGridViewRowCancelEventArgs) _
    Handles DataGridView1.UserDeletingRow

    Dim startingBalanceRow As DataGridViewRow = DataGridView1.Rows(0)

    ' Check if the starting balance row is included in the selected rows
    If DataGridView1.SelectedRows.Contains(startingBalanceRow) Then
        ' Do not allow the user to delete the Starting Balance row.
        MessageBox.Show("Cannot delete Starting Balance row!")

        ' Cancel the deletion if the Starting Balance row is included.
        e.Cancel = True
    End If
End Sub

注釈

プロパティにSelectionMode選択した行をFullRowSelect設定するには、 プロパティを SelectedRows または RowHeaderSelect に設定する必要があります。

このプロパティには、参照時の選択範囲の読み取り専用スナップショットが含まれます。 このコレクションのコピーを保持している場合、ユーザーが選択内容を変更した可能性がある実際の以降 DataGridView の状態とは異なる場合があります。 したがって、コレクションのコピーを操作しないでください。

プログラムによって行を選択するには、そのプロパティを Selected に設定します true

適用対象

こちらもご覧ください