DataGridViewRowCollection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
DataGridViewRow オブジェクトのコレクション。
public ref class DataGridViewRowCollection : System::Collections::IList
[System.ComponentModel.ListBindable(false)]
public class DataGridViewRowCollection : System.Collections.IList
[<System.ComponentModel.ListBindable(false)>]
type DataGridViewRowCollection = class
interface IList
interface ICollection
interface IEnumerable
[<System.ComponentModel.ListBindable(false)>]
type DataGridViewRowCollection = class
interface ICollection
interface IEnumerable
interface IList
Public Class DataGridViewRowCollection
Implements IList
- 継承
-
DataGridViewRowCollection
- 属性
- 実装
注釈
には DataGridViewRowCollection 、コントロール内の DataGridViewRow オブジェクトが DataGridView 含まれます。 コントロール Rows プロパティを使用して、このクラスのインスタンスを取得できます。 コレクションは、 プロパティを使用してコントロールへの参照を DataGridView 保持します。
パフォーマンスを向上させるために、 DataGridViewRowCollection には共有行と非共有行が含まれます。 共有行は、大きなレコード セットのコストを削減するためにメモリを共有します。 レコード セットが非常に大きい場合は、行を可能な限り共有するように注意する必要があります。
詳細については、「 Windows フォーム DataGridView コントロールを拡張するための推奨される手順」を参照してください。
コンストラクター
DataGridViewRowCollection(DataGridView) |
DataGridViewRowCollection クラスの新しいインスタンスを初期化します。 |
プロパティ
Count |
コレクション内の行数を取得します。 |
DataGridView |
コレクションを所有している DataGridView を取得します。 |
Item[Int32] |
指定されたインデックス位置にある DataGridViewRow を取得します。 |
List |
DataGridViewRow オブジェクトの配列を取得します。 |
メソッド
イベント
CollectionChanged |
コレクションの内容が変更されたときに発生します。 |
明示的なインターフェイスの実装
ICollection.CopyTo(Array, Int32) |
コレクションの要素を Array にコピーします。指定したインデックスからコピーが開始されます。 |
ICollection.Count |
コレクションに格納されている要素の数を取得します。 |
ICollection.IsSynchronized |
コレクションへのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 |
ICollection.SyncRoot |
コレクションへのアクセスを同期するために使用できるオブジェクトを取得します。 |
IEnumerable.GetEnumerator() |
コレクションを反復処理する列挙子を返します。 |
IList.Add(Object) |
DataGridViewRow をコレクションに追加します。 |
IList.Clear() |
コレクションからすべての項目を削除します。 |
IList.Contains(Object) |
指定した項目がコレクションに格納されているかどうかを判断します。 |
IList.IndexOf(Object) |
コレクション内で指定した項目のインデックスを返します。 |
IList.Insert(Int32, Object) |
DataGridViewRow をコレクション内の指定したインデックスに挿入します。 |
IList.IsFixedSize |
コレクションが固定サイズかどうかを示す値を取得します。 |
IList.IsReadOnly |
コレクションが読み取り専用かどうかを示す値を取得します。 |
IList.Item[Int32] |
指定したインデックスにある要素を取得または設定します。 |
IList.Remove(Object) |
指定された DataGridViewRow をコレクションから削除します。 |
IList.RemoveAt(Int32) |
指定した位置にあるコレクションから DataGridViewRow を削除します。 |
拡張メソッド
Cast<TResult>(IEnumerable) |
IEnumerable の要素を、指定した型にキャストします。 |
OfType<TResult>(IEnumerable) |
指定された型に基づいて IEnumerable の要素をフィルター処理します。 |
AsParallel(IEnumerable) |
クエリの並列化を有効にします。 |
AsQueryable(IEnumerable) |
IEnumerable を IQueryable に変換します。 |
適用対象
こちらもご覧ください
.NET