Skip to main content
A newer version of this page is available. .

RepositoryItemBreadCrumbEdit.History Property

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

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v18.2.dll

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