Skip to main content

ImageEdit.EditValue Property

Gets or sets an object representing an image stored by the image editor.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
public override object EditValue { get; set; }

Property Value

Type Description
Object

A Object value representing an image stored by the image editor.

Remarks

The EditValue property contains a value edited by an image edit control. This value is a binary object representing an image loaded into an editor. This binary object can be either a Image object or an array of bytes.

The EditValue property is overridden in order to prevent its display in the Properties window at design time.

EditValue is a property you should use to perform programmatic binding of a standalone image edit control to a single data element, such as a value in a column in a dataset table. When using an image editor for in-place editing (for use in the Grid Control or other DevExpress container controls) its EditValue property is set to a value from the corresponding data field automatically.

See Also