windowsforms-devexpress-dot-xtraeditors-dot-repository-72061c8c.md
Contains values that specify whether an editor’s edit value or display text is exported, when the editor’s data is exported in XLS and CSV formats.
Namespace : DevExpress.XtraEditors.Repository
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
public enum ExportMode
Public Enum ExportMode
| Name | Description |
|---|---|
Default |
Either an editor’s value or display text is exported, depending on the editor’s type. For the ImageComboBoxEdit and LookUpEdit controls, their display text is exported. For other editors, their edit values (BaseEdit.EditValue), which sometimes match the display text, are exported.
|
| DisplayText |
An editor’s display text is exported.
|
| Value |
An editor’s edit value is exported.
|
The following properties accept/return ExportMode values:
An editor can be used for in-place editing in container controls (for instance, in the Grid Control). Exporting a container control to any format exports the contents of its in-place editors. The RepositoryItem.ExportMode property specifies whether an editor’s edit value or display text is exported (when exporting the container control in XLS and CSV formats).
See Also