Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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