CollectionView.IsCurrentBeforeFirst プロパティ
定義
ビューの CurrentItem がコレクションの先頭より前にあるかどうかを示す値を取得します。Gets a value that indicates whether the CurrentItem of the view is before the beginning of the collection.
public:
virtual property bool IsCurrentBeforeFirst { bool get(); };
public virtual bool IsCurrentBeforeFirst { get; }
member this.IsCurrentBeforeFirst : bool
Public Overridable ReadOnly Property IsCurrentBeforeFirst As Boolean
プロパティ値
ビューの CurrentItem がコレクションの先頭より前にある場合は true
、それ以外の場合は false
。true
if the CurrentItem of the view is before the beginning of the collection; otherwise, false
.
実装
注釈
コレクションビューは、現在のレコードポインターの概念をサポートします。Collection views support the concept of a current record pointer. コレクションビュー内のオブジェクト間を移動すると、レコードポインターが移動されます。これにより、コレクション内の特定の場所に存在するオブジェクトを取得できます。As you navigate through the objects in a collection view, you are moving a record pointer that allows you to retrieve the object that exists at that particular location in the collection.