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

BreadCrumbNode.ChildNodes Property

Gets the child nodes collection for this BreadCrumbNode.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

[Browsable(false)]
public BreadCrumbNodeCollection ChildNodes { get; }

Property Value

Type Description
BreadCrumbNodeCollection

A BreadCrumbNodeCollection that contains child BreadCrumbNode for this BreadCrumbNode.

Remarks

A BreadCrumbNodeCollection, assigned to the ChildNodes property, provides zero-based indexed access to BreadCrumbNode that serve as child nodes for this BreadCrumbNode. You can populate this collection both at design-time and dynamically at runtime. To populate the ChildNodes collection at runtime, handle the RepositoryItemBreadCrumbEdit.QueryChildNodes event. See the Breadcrumb Edit Control topic to learn more.

See Also