BarEditItem.EditValue Property
In This Article
Specifies the value for the BarEditItem's editor. This is a dependency property.
Namespace: DevExpress.Xpf.Bars
Assembly: DevExpress.Xpf.Core.v14.2.dll
#Declaration
[XtraSerializableProperty]
[TypeConverter(typeof(ObjectConverter))]
public object EditValue { get; set; }
#Property Value
Type | Description |
---|---|
Object | An object that represents the edit value for the in-place editor. |
#Remarks
Use the EditValue property to get and set an in-place editor's value. When setting the EditValue property, ensure that the new value is of the type that is accepted by the in-place editor. For instance, a SpinEdit editor accepts numeric values, while a TextEdit control is used to edit string values.
See Also