Skip to main content

ImageEdit.Text Property

Gets a value representing the display representation of the editor’s BaseEdit.EditValue property.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Bindable(false)]
[Browsable(false)]
public override string Text { get; }

Property Value

Type Description
String

A String value standing for the display representation of the editor’s edited value.

Remarks

When an image editor contains data (its edited value is not null or empty), the Text property holds a string value representing the class name of a binary object assigned for the ImageEdit.EditValue property. Since this object can either be an image or an array of bytes, the Text property can contain either the “System.Drawing.Image” or “System.Byte[]” text. The value of the Text property can be displayed in the image editor’s display region when the RepositoryItemBlobBaseEdit.ShowIcon property is set to false and the RepositoryItemBlobBaseEdit.TextEditStyle is not set to the TextEditStyles.HideTextEditor‘s value.

This member supports the XtraEditors library infrastructure and is not intended to be used directly from your code.

See Also