MMC_RESULT_VIEW_STYLE

[This is preliminary documentation and subject to change.]

The MMC_RESULT_VIEW_STYLE enumeration type defines the Win32 list-view style (LVS_*) flags that can be used to set the view style in the MMC result view pane. They can be used in the add and remove parameters of the IResultData::ModifyViewStyle method.

typedef enum _MMC_RESULT_VIEW_STYLE
{
    MMC_SINGLESEL       = 0x0001,
    MMC_SHOWSELALWAYS   = 0x0002,
    MMC_NOSORTHEADER    = 0x0003,

} MMC_RESULT_VIEW_STYLE;

Members

Value Meaning
MMC_SINGLESEL Allows only one item at a time to be selected. By default, multiple items can be selected.
MMC_SHOWSELALWAYS Always show the selection, if any, even if the control does not have the focus.
MMC_NOSORTHEADER Specifies that column headers do not work like buttons. This style is useful if clicking on a column header in report view does not carry out an action, such as sorting.