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

LookUpEditBase.SelectedItemValue Property

Gets the value of the selected item. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v18.2.dll

Declaration

[Browsable(false)]
public object SelectedItemValue { get; }

Property Value

Type Description
Object

An object that represents the selected item’s value.

Remarks

If the ComboBoxEdit‘s LookUpEditBase.ItemsSource property is set to a collection of Button objects, the SelectedItemValue property returns the selected button’s Button.Content property value. Otherwise, it returns the same value as the LookUpEditBase.SelectedItem property.

This property supports the internal infrastructure and is not intended to be used directly from your code. To get or set the currently selected item, use the LookUpEditBase.SelectedItem property.

See Also