DataGridViewCellCollection.Add(DataGridViewCell) メソッド

定義

セルをコレクションに追加します。

public:
 virtual int Add(System::Windows::Forms::DataGridViewCell ^ dataGridViewCell);
public virtual int Add (System.Windows.Forms.DataGridViewCell dataGridViewCell);
abstract member Add : System.Windows.Forms.DataGridViewCell -> int
override this.Add : System.Windows.Forms.DataGridViewCell -> int
Public Overridable Function Add (dataGridViewCell As DataGridViewCell) As Integer

パラメーター

dataGridViewCell
DataGridViewCell

コレクションに追加する DataGridViewCell

戻り値

新しい要素を挿入する位置。

例外

この DataGridViewCellCollection を所有する行は、既に DataGridView コントロールに属しています。

- または -

dataGridViewCell は既に DataGridViewRow に属しています。

注釈

コントロールに行を追加する前に、 にセルを設定 DataGridViewRow するには、このメソッドを DataGridView 使用します。 コントロールに行を追加すると、その行に含まれるセルの数は常にコントロール内の列数と一致するため、このメソッドは役に立たなくなります。

適用対象

こちらもご覧ください