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

RepositoryItemBreadCrumbEdit.History Property

Provides access to a BreadCrumbHistory object that stores the navigation history for this BreadCrumbEdit.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Behavior")]
public virtual BreadCrumbHistory History { get; }

#Property Value

Type Description
BreadCrumbHistory

A BreadCrumbHistory object that stores the navigation history for this BreadCrumbEdit.

#Remarks

Whenever an end-user successfully navigates anywhere within the BreadCrumbEdit control using the keyboard, the previously visited BreadCrumbEdit.Path is written to a BreadCrumbHistoryItem object (to its BreadCrumbHistoryItem.Path property). This object is then added to the BreadCrumbHistory collection, which stores the end-user keyboard navigation history and provides methods to navigate through previously visited paths. To access this collection, use the History property. See the Breadcrumb Edit Control topic to learn more about BreadCrumbEdit navigation history.

Note

The History collection does not store any records of navigation performed in code or by using the mouse or touch. To get this complete navigation history, not only the history of keyboard navigation, use the BreadCrumbEdit.GetNavigationHistory method.

See Also