Skip to main content

BreadCrumbHistory.Add(BreadCrumbHistoryItem) Method

Adds the target BreadCrumbHistoryItem to this BreadCrumbHistory collection.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public virtual void Add(
    BreadCrumbHistoryItem item
)

Parameters

Name Type Description
item BreadCrumbHistoryItem

The BreadCrumbHistoryItem to be added.

Remarks

The BreadCrumbHistory collection assigned to the RepositoryItemBreadCrumbEdit.History property, stores the history of end-user navigation within this BreadCrumbHistory. Each BreadCrumbHistory collection record is a BreadCrumbHistoryItem object that stores a specific node’s path (the BreadCrumbHistoryItem.Path property). You can manually add history items to a BreadCrumbHistory collection via the Add or BreadCrumbHistory.AddRange methods. See the Breadcrumb Edit Control topic to learn more.

Note

The Add method will not add a new BreadCrumbHistoryItem object to a BreadCrumbHistory collection if this collection already contains another BreadCrumbHistoryItem with the same BreadCrumbHistoryItem.Path property value.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Add(BreadCrumbHistoryItem) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also