windowsforms-devexpress-dot-xtraeditors-dot-pictureedit-e50dd7bd.md
Gets a string value identifying the editor’s contents (a representation of the BaseEdit.EditValue property’s value).
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[Bindable(false)]
[Browsable(false)]
public override string Text { get; }
<Bindable(False)>
<Browsable(False)>
Public Overrides ReadOnly Property Text As String
| Type | Description |
|---|---|
| String |
A String value identifying the editor’s contents.
|
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