Skip to main content

BreadCrumbNode.IsParentOf(BreadCrumbNode) Method

Gets whether this BreadCrumbNode object is a parent node for the target BreadCrumbNode object.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public bool IsParentOf(
    BreadCrumbNode node
)

Parameters

Name Type Description
node BreadCrumbNode

A BreadCrumbNode object to be checked.

Returns

Type Description
Boolean

true if this BreadCrumbNode object is a parent node for the target BreadCrumbNode object; otherwise, false.

Remarks

The IsParentOf property allows you to identify whether this BreadCrumbNode object contains the target BreadCrumbNode object in its BreadCrumbNode.ChildNodes collection.

See Also