CollectionView.MoveCurrentToPrevious メソッド
定義
ビュー内の CurrentItem の前にある項目を CurrentItem として設定します。Sets the item before the CurrentItem in the view as the CurrentItem.
public:
virtual bool MoveCurrentToPrevious();
public virtual bool MoveCurrentToPrevious ();
abstract member MoveCurrentToPrevious : unit -> bool
override this.MoveCurrentToPrevious : unit -> bool
Public Overridable Function MoveCurrentToPrevious () As Boolean
戻り値
結果の CurrentItem がビュー内の項目の場合は true
、ビュー内の項目でない場合は false
。true
if the resulting CurrentItem is an item within the view; 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. 詳細については、「 データバインディングの概要」の「コレクションへのバインド」を参照してください。For more information, see "Binding to Collections" in Data Binding Overview.