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

RepositoryItemBreadCrumbEdit.BreadCrumbMode Property

Gets or sets the current BreadCrumbEditmode.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(BreadCrumbMode.Select)]
public virtual BreadCrumbMode BreadCrumbMode { get; set; }

Property Value

Type Default Description
BreadCrumbMode **Select**

A BreadCrumbMode enumerator value that specifies the current BreadCrumbEdit mode.

Available values:

Name Description
Edit

The BreadCrumbEdit‘s path is represented as plain editable text. End users can use a keyboard to modify this path and navigate within the BreadCrumbEdit.

Select

The BreadCrumbEdit‘s path is represented as a sequence of click-able visual elements. Each element represents a BreadCrumbNode and has a drop-down button that displays a drop-down list with all child nodes owned by this node.

Remarks

The BreadCrumbEdit can operate in Edit and Select modes. In Select mode nodes are presented as click-able items with the drop-down button, clicking which displays a drop-down list with all child nodes for this node. Edit mode, automatically applied when an end-user clicks empty space within a BreadCrumbEdit, allows end-users to manually modify the editor’s path, presented as plain editable string. See the Breadcrumb Edit Control to learn more.

See Also