DataGridViewRowCollection.RemoveAt(Int32) メソッド

定義

コレクション内の指定した位置にある行を削除します。

public:
 virtual void RemoveAt(int index);
public virtual void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Overridable Sub RemoveAt (index As Integer)

パラメーター

index
Int32

削除する行の位置。

例外

index が、ゼロ未満で、コントロール内の行数から 1 を引いた値を超えています。

関連付けられている DataGridView コントロールによって、新しい行の追加を一時的に妨げる次の操作のいずれかが実行されています。

  • コントロール内のすべてのセルを選択します。

  • 選択範囲をクリアします。

- または -

このメソッドは、次のいずれかの DataGridView イベントのハンドラーから呼び出されています。

- または -

index はコレクション内の行の数と等しく、また DataGridViewAllowUserToAddRows のプロパティが true に設定されています。

- または -

関連付けられている DataGridView コントロールは、両方 true ではない AllowRemove または SupportsChangeNotification プロパティ値を使用して、IBindingList 実装にバインドされています。

適用対象

こちらもご覧ください