windowsforms-devexpress-dot-xtraeditors-dot-controls-75aad8e8.md
Lists values that specify how the PictureEdit control stores images pasted via the editor’s context menu
Namespace : DevExpress.XtraEditors.Controls
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
public enum PictureStoreMode
Public Enum PictureStoreMode
| Name | Description |
|---|---|
Default |
A pasted image is stored either as an Image object or as an array of bytes to the editor’s edit value, depending upon the type of the current edit value. If the editor’s EditValue currently stores an Image object, the newly pasted image will be stored as an Image as well. Otherwise, the new image will be stored as an array of bytes.
|
| Image |
A pasted image is stored to the editor’s edit value as an Image object.
|
| ByteArray |
A pasted image is stored to the editor’s edit value as an array of bytes.
|
The following properties accept/return PictureStoreMode values:
Use the RepositoryItemPictureEdit.PictureStoreMode property of an image editor to specify how images pasted via the editor’s context menu are stored in the edit value.
See Also