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

TdxCustomBreadcrumbEdit.OnPathEntered Event

In This Article

Enables you to handle path input.

#Declaration

Delphi
property OnPathEntered: TdxBreadcrumbEditPathEnteredEvent read; write;

#Remarks

Implement the OnPathEntered event to manually add the entered path to the recently used paths (see the breadcrumb’s Properties.PathEditor.RecentPaths property and the RecentPaths.Add method).

If the path is added to the recently used paths collection manually, the breadcrumb’s Properties.PathEditor.RecentPathsAutoPopulate property is not in effect.

Sender specifies the breadcrumb control.

ANewPath specifies the entered path.

AHandled specifies whether the default handling is overridden. Set AHandled to True, to prevent default code execution.

See Also