CollectionView.MoveCurrentToNext メソッド
定義
ビュー内の CurrentItem の後の項目を CurrentItemとして設定します。Sets the item after the CurrentItem in the view as the CurrentItem.
public:
virtual bool MoveCurrentToNext();
public virtual bool MoveCurrentToNext ();
abstract member MoveCurrentToNext : unit -> bool
override this.MoveCurrentToNext : unit -> bool
Public Overridable Function MoveCurrentToNext () 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.