Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

WinExplorerView.MoveNextPage() Method

In This Article

Scrolls this WinExplorerView one screen down and selects an item within the last item row currently visible.

Namespace: DevExpress.XtraGrid.Views.WinExplorer

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

public override void MoveNextPage()

#Remarks

The MoveNextPage method acts identically to the PageDown key press in Windows Explorer. This method selects the last currently visible item (for the List and Content view styles) or the item within the last currently visible row below the currently selected item (for all the rest view styles). If the currently selected item is already the last item visible (or placed within the last visible row), the MoveNextPage method will scroll the WinExplorerView down until this item (row) is the first visible and select the new last item visible (an item within the new last row visible). Note that this method can also select Group headers (see the WinExplorerViewColumns.GroupColumn property), which will automatically select all items within this Group.

The animation below illustrates how the MoveNextPage method operates.

You can also use the WinExplorerView.MoveNext and WinExplorerView.MoveLast methods to select the following or very last WinExplorerView item respectively.

See Also