_ExportListOptions enumeration (mmcobj.h)

The ExportListOptions enumeration is used by the View.ExportList method and specifies options when writing list view contents to a file. These values can be combined using a bitwise OR operation. This enumeration applies to the MMC 2.0 Automation Object Model.

Syntax

typedef enum ExportListOptions {
  ExportListOptions_Default = 0,
  ExportListOptions_Unicode = 0x1,
  ExportListOptions_TabDelimited = 0x2,
  ExportListOptions_SelectedItemsOnly = 0x4
} _ExportListOptions, EXPORTLISTOPTIONS;

Constants

 
ExportListOptions_Default
Value: 0
Default list export option. If this is the only flag specified in the call to View.ExportList, then the list view contents are exported as comma-delimited ANSI text.
ExportListOptions_Unicode
Value: 0x1
The list is exported as Unicode text.
ExportListOptions_TabDelimited
Value: 0x2
The list is exported as tab-delimited text.
ExportListOptions_SelectedItemsOnly
Value: 0x4
The exported list contains only currently selected items.

Requirements

Requirement Value
Minimum supported client Windows Vista
Minimum supported server Windows Server 2008
Header mmcobj.h

See also

View object

View.ExportList