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

TdxCustomWizardControl.CanGoToNextPage Method

Determines if a wizard page is accessible for navigation with the Next button.

#Declaration

Delphi
function CanGoToNextPage: Boolean; virtual;

#Returns

Type
Boolean

#Remarks

The GetNextPage, CanGoToNextPage, and CanGoToPrevPage functions allow you to learn about the flow of pages displayed by the wizard control and determine which page can be activated next using navigation buttons (Next or Back).

The CanGoToNextPage function calls internally the GetNextPage function and passes the currently active page and True as function parameters. If the GetNextPage function finds a page to navigate, the CanGoToNextPage function returns True; otherwise – False.

See Also