CollectionView::MoveCurrentTo Method (Object^)

 

Sets the specified item to be the CurrentItem in the view.

Namespace:   System.Windows.Data
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
virtual bool MoveCurrentTo(
	Object^ item
)

Parameters

item
Type: System::Object^

The item to set as the CurrentItem.

Return Value

Type: System::Boolean

true if the resulting CurrentItem is within the view; otherwise, false.

If the specified item is not found, the method returns false and the CurrentItem is positioned before the beginning of the collection in the view.

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.

For more information about the current item of a view, see CurrentItem.

The following example demonstrates the use of this method.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: