DataGridViewCellCollection.Add(DataGridViewCell) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
セルをコレクションに追加します。
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 使用します。 コントロールに行を追加すると、その行に含まれるセルの数は常にコントロール内の列数と一致するため、このメソッドは役に立たなくなります。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET