Skip to main content

PictureEdit.Text Property

Gets a string value identifying the editor’s contents (a representation of the BaseEdit.EditValue property’s value).

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 identifying the editor’s contents.

Remarks

When a picture editor contains data (its edited value is not null or empty), the Text property holds a string value representing the class name of the binary object assigned to the BaseEdit.EditValue property. Since this object can be either an image or an array of bytes, the Text property can be either “System.Drawing.Image” or “System.Byte[]” text, respectively.

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

See Also