BarEditItem.EditSettings Property
In This Article
Gets or sets the edit settings for the item, based upon which an in-place editor is created. This is a dependency property.
Namespace: DevExpress.Xpf.Bars
Assembly: DevExpress.Xpf.Core.v14.2.dll
#Declaration
[XtraSerializableProperty(XtraSerializationVisibility.Content, true, false, false)]
public BaseEditSettings EditSettings { get; set; }
#Property Value
Type | Description |
---|---|
Base |
A Base |
#Remarks
To display a specific in-place editor within bars, create a BarEditItem object and assign a BaseEditSettings descendant instance to the EditSettings property. The type of the assigned object will specify the type of the in-place editor created. The created editor can be accessed via the BarEditItemLink.Editor property.
To provide values for the in-place editor, use the BarEditItem.EditValue property. The BarEditItem.EditValueChanged event allows you to respond to changing the edit value.
See Also