DataGridView.SelectedRows プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ユーザーが選択した行のコレクションを取得します。
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
。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET