Skip to main content
A newer version of this page is available. .

ExportMode Enum

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.v18.1.dll

Declaration

public enum ExportMode

Members

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.

Related API Members

Remarks

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

The following code snippets (auto-collected from DevExpress Examples) contain references to the ExportMode enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also