Back to Devexpress

BreadCrumbEdit.EditValue Property

windowsforms-devexpress-dot-xtraeditors-dot-breadcrumbedit-341eb712.md

latest2.7 KB
Original Source

BreadCrumbEdit.EditValue Property

This member supports the internal infrastructure, and is not intended to be used directly from your code. Please use the BreadCrumbEdit.Path property instead.

Namespace : DevExpress.XtraEditors

Assembly : DevExpress.XtraEditors.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[Browsable(false)]
[DXCategory("Data")]
[EditorBrowsable(EditorBrowsableState.Never)]
public override object EditValue { get; set; }
vb
<DXCategory("Data")>
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
Public Overrides Property EditValue As Object

Property Value

Type
Object

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the EditValue property.

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.

winforms-how-to-use-zoom-transition-effect/CS/dxSample/Form1.cs#L118

csharp
var breadCrumb = (BreadCrumbEdit)sender;
var path = breadCrumb.EditValue as string;
if(this.transitionManager1.IsTransition || path == null)

winforms-how-to-use-zoom-transition-effect/VB/dxSample/Form1.vb#L128

vb
Dim breadCrumb = CType(sender, DevExpress.XtraEditors.BreadCrumbEdit)
Dim path = TryCast(breadCrumb.EditValue, String)
If Me.transitionManager1.IsTransition OrElse Equals(path, Nothing) Then Return

See Also

BreadCrumbEdit Class

BreadCrumbEdit Members

DevExpress.XtraEditors Namespace