IBindingListView インターフェイス
定義
高度な並べ替えとフィルター処理の機能を提供して、IBindingList インターフェイスを拡張します。Extends the IBindingList interface by providing advanced sorting and filtering capabilities.
public interface class IBindingListView : System::Collections::IList, System::ComponentModel::IBindingList
public interface class IBindingListView : System::ComponentModel::IBindingList
public interface IBindingListView : System.Collections.IList, System.ComponentModel.IBindingList
public interface IBindingListView : System.ComponentModel.IBindingList
type IBindingListView = interface
interface ICollection
interface IEnumerable
interface IList
interface IBindingList
type IBindingListView = interface
interface IBindingList
interface IList
interface ICollection
interface IEnumerable
Public Interface IBindingListView
Implements IBindingList, IList
Public Interface IBindingListView
Implements IBindingList
- 派生
- 実装
注釈
インターフェイスを使用し IBindingListView て、高度な並べ替えをプロパティ記述子と方向のペアのセットとして実装します。With the IBindingListView interface, you implement advanced sorting as a set of property descriptor-direction pairs. フィルター処理は、データソースの実装によって解釈される文字列として実装します。You implement filtering as a string to be interpreted by the data source implementation. IBindingListViewインターフェイスは、クラスによって実装され BindingSource ます。The IBindingListView interface is implemented by the BindingSource class.
プロパティ
AllowEdit |
リストの項目を更新できるかどうかを示す値を取得します。Gets whether you can update items in the list. (継承元 IBindingList) |
AllowNew |
AddNew() を使用してリストに項目を追加できるかどうかを示す値を取得します。Gets whether you can add items to the list using AddNew(). (継承元 IBindingList) |
AllowRemove |
Remove(Object) または RemoveAt(Int32) を使用してリストから項目を削除できるかどうかを示す値を取得します。Gets whether you can remove items from the list, using Remove(Object) or RemoveAt(Int32). (継承元 IBindingList) |
Count |
ICollection に格納されている要素の数を取得します。Gets the number of elements contained in the ICollection. (継承元 ICollection) |
Filter |
データ ソースによって返された項目のコレクションから項目を除外するときに使用するフィルターを取得または設定します。Gets or sets the filter to be used to exclude items from the collection of items returned by the data source. |
IsFixedSize |
IList が固定サイズかどうかを示す値を取得します。Gets a value indicating whether the IList has a fixed size. (継承元 IList) |
IsReadOnly |
IList が読み取り専用かどうかを示す値を取得します。Gets a value indicating whether the IList is read-only. (継承元 IList) |
IsSorted |
リストの項目が並べ替え済みかどうかを示す値を取得します。Gets whether the items in the list are sorted. (継承元 IBindingList) |
IsSynchronized |
ICollection へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。Gets a value indicating whether access to the ICollection is synchronized (thread safe). (継承元 ICollection) |
Item[Int32] |
指定したインデックスにある要素を取得または設定します。Gets or sets the element at the specified index. (継承元 IList) |
SortDescriptions |
現在データ ソースに適用されている並べ替えに関する説明のコレクションを取得します。Gets the collection of sort descriptions currently applied to the data source. |
SortDirection |
並べ替えの順序を取得します。Gets the direction of the sort. (継承元 IBindingList) |
SortProperty |
並べ替えに使用されている PropertyDescriptor を取得します。Gets the PropertyDescriptor that is being used for sorting. (継承元 IBindingList) |
SupportsAdvancedSorting |
データ ソースが高度な並べ替えをサポートしているかどうかを示す値を取得します。Gets a value indicating whether the data source supports advanced sorting. |
SupportsChangeNotification |
リストまたはリスト内の項目が変更されたときに、ListChanged イベントを発生させるかどうかを示す値を取得します。Gets whether a ListChanged event is raised when the list changes or an item in the list changes. (継承元 IBindingList) |
SupportsFiltering |
データ ソースがフィルター処理をサポートしているかどうかを示す値を取得します。Gets a value indicating whether the data source supports filtering. |
SupportsSearching |
リストが Find(PropertyDescriptor, Object) メソッドを使用した検索をサポートしているかどうかを示す値を取得します。Gets whether the list supports searching using the Find(PropertyDescriptor, Object) method. (継承元 IBindingList) |
SupportsSorting |
リストが並べ替えをサポートしているかどうかを示す値を取得します。Gets whether the list supports sorting. (継承元 IBindingList) |
SyncRoot |
ICollection へのアクセスを同期するために使用できるオブジェクトを取得します。Gets an object that can be used to synchronize access to the ICollection. (継承元 ICollection) |
メソッド
Add(Object) |
IList に項目を追加します。Adds an item to the IList. (継承元 IList) |
AddIndex(PropertyDescriptor) |
検索に使用されるインデックスに PropertyDescriptor を追加します。Adds the PropertyDescriptor to the indexes used for searching. (継承元 IBindingList) |
AddNew() |
リストに新しい項目を追加します。Adds a new item to the list. (継承元 IBindingList) |
ApplySort(ListSortDescriptionCollection) |
指定した ListSortDescriptionCollection に基づいて、データ ソースを並べ替えます。Sorts the data source based on the given ListSortDescriptionCollection. |
ApplySort(PropertyDescriptor, ListSortDirection) |
PropertyDescriptor と ListSortDirection に基づいて並べ替えを行います。Sorts the list based on a PropertyDescriptor and a ListSortDirection. (継承元 IBindingList) |
Clear() |
IList からすべての項目を削除します。Removes all items from the IList. (継承元 IList) |
Contains(Object) |
IList に特定の値が格納されているかどうかを判断します。Determines whether the IList contains a specific value. (継承元 IList) |
CopyTo(Array, Int32) |
ICollection の要素を Array にコピーします。Array の特定のインデックスからコピーが開始されます。Copies the elements of the ICollection to an Array, starting at a particular Array index. (継承元 ICollection) |
Find(PropertyDescriptor, Object) |
指定された PropertyDescriptor を保持する行のインデックスを返します。Returns the index of the row that has the given PropertyDescriptor. (継承元 IBindingList) |
GetEnumerator() |
コレクションを反復処理する列挙子を返します。Returns an enumerator that iterates through a collection. (継承元 IEnumerable) |
IndexOf(Object) |
IList 内の特定の項目のインデックスを確認します。Determines the index of a specific item in the IList. (継承元 IList) |
Insert(Int32, Object) |
指定したインデックスの IList に項目を挿入します。Inserts an item to the IList at the specified index. (継承元 IList) |
Remove(Object) |
特定のオブジェクトが IList 内にあるときに、最初に出現したものを削除します。Removes the first occurrence of a specific object from the IList. (継承元 IList) |
RemoveAt(Int32) |
指定したインデックスにある IList 項目を削除します。Removes the IList item at the specified index. (継承元 IList) |
RemoveFilter() |
データ ソースに適用されている現在のフィルターを削除します。Removes the current filter applied to the data source. |
RemoveIndex(PropertyDescriptor) |
検索に使用されるインデックスから PropertyDescriptor を削除します。Removes the PropertyDescriptor from the indexes used for searching. (継承元 IBindingList) |
RemoveSort() |
ApplySort(PropertyDescriptor, ListSortDirection) を使用して並べ替えを適用した場合は、その並べ替えを削除します。Removes any sort applied using ApplySort(PropertyDescriptor, ListSortDirection). (継承元 IBindingList) |
イベント
ListChanged |
リストまたはリスト内の項目が変更された場合に発生します。Occurs when the list changes or an item in the list changes. (継承元 IBindingList) |
拡張メソッド
Cast<TResult>(IEnumerable) |
IEnumerable の要素を、指定した型にキャストします。Casts the elements of an IEnumerable to the specified type. |
OfType<TResult>(IEnumerable) |
指定された型に基づいて IEnumerable の要素をフィルター処理します。Filters the elements of an IEnumerable based on a specified type. |
AsParallel(IEnumerable) |
クエリの並列化を有効にします。Enables parallelization of a query. |
AsQueryable(IEnumerable) |
IEnumerable を IQueryable に変換します。Converts an IEnumerable to an IQueryable. |