MMC20, COM interface constants for VB.Net / VBScript

MMC20 - interface constants

     This page contains simple VBA include for the MMC20 COM library.

library parameters

File NameWINDOWS\system32\mmc.exe
Guid{8E80422B-CAC4-472B-B272-9635F1DFEF3B}
Enums9

_DocumentMode

alias, 4 members.
  'Document Mode enumeration
Public Enum DocumentMode

  'Document opens in Author Mode
  DocumentMode_Author = 0  '&H0

  'Document opens in Full-Access User Mode
  DocumentMode_User = 1  '&H1

  'Document opens in Limited-Access User Mode with multiple windows
  DocumentMode_User_MDI = 2  '&H2

  'Document opens in Limited-Access User Mode with single window
  DocumentMode_User_SDI = 3  '&H3
End Enum

DocumentMode

enum, 4 members.
  'Document Mode enumeration
Public Enum DocumentMode

  'Document opens in Author Mode
  DocumentMode_Author = 0  '&H0

  'Document opens in Full-Access User Mode
  DocumentMode_User = 1  '&H1

  'Document opens in Limited-Access User Mode with multiple windows
  DocumentMode_User_MDI = 2  '&H2

  'Document opens in Limited-Access User Mode with single window
  DocumentMode_User_SDI = 3  '&H3
End Enum

_ListViewMode

alias, 5 members.
  'List View Mode enumeration
Public Enum ListViewMode

  'List View with small icons
  ListMode_Small_Icons = 0  '&H0

  'List View with large icons
  ListMode_Large_Icons = 1  '&H1

  'List View displaying simple list view
  ListMode_List = 2  '&H2

  'List View displaying detailed view
  ListMode_Detail = 3  '&H3

  'List View displaying filtered view
  ListMode_Filtered = 4  '&H4
End Enum

ListViewMode

enum, 5 members.
  'List View Mode enumeration
Public Enum ListViewMode

  'List View with small icons
  ListMode_Small_Icons = 0  '&H0

  'List View with large icons
  ListMode_Large_Icons = 1  '&H1

  'List View displaying simple list view
  ListMode_List = 2  '&H2

  'List View displaying detailed view
  ListMode_Detail = 3  '&H3

  'List View displaying filtered view
  ListMode_Filtered = 4  '&H4
End Enum

_ViewOptions

alias, 5 members.
  'View Options enumeration
Public Enum ViewOptions

  'Default view options
  ViewOption_Default = 0  '&H0

  'View with a Scope Tree pane hidden
  ViewOption_ScopeTreeHidden = 1  '&H1

  'View with Tool Bars hidden
  ViewOption_NoToolBars = 2  '&H2

  'Temporary View without persistence capability
  ViewOption_NotPersistable = 4  '&H4

  'View with Action Pane hidden
  ViewOption_ActionPaneHidden = 8  '&H8
End Enum

ViewOptions

enum, 5 members.
  'View Options enumeration
Public Enum ViewOptions

  'Default view options
  ViewOption_Default = 0  '&H0

  'View with a Scope Tree pane hidden
  ViewOption_ScopeTreeHidden = 1  '&H1

  'View with Tool Bars hidden
  ViewOption_NoToolBars = 2  '&H2

  'Temporary View without persistence capability
  ViewOption_NotPersistable = 4  '&H4

  'View with Action Pane hidden
  ViewOption_ActionPaneHidden = 8  '&H8
End Enum

_ExportListOptions

alias, 4 members.
  'List Export Option enumeration
Public Enum ExportListOptions

  'Default List Export options
  ExportListOptions_Default = 0  '&H0

  'Exports List to unicode
  ExportListOptions_Unicode = 1  '&H1

  'Exports List to tab-delimited format
  ExportListOptions_TabDelimited = 2  '&H2

  'Exports only selected files
  ExportListOptions_SelectedItemsOnly = 4  '&H4
End Enum

ExportListOptions

enum, 4 members.
  'List Export Option enumeration
Public Enum ExportListOptions

  'Default List Export options
  ExportListOptions_Default = 0  '&H0

  'Exports List to unicode
  ExportListOptions_Unicode = 1  '&H1

  'Exports List to tab-delimited format
  ExportListOptions_TabDelimited = 2  '&H2

  'Exports only selected files
  ExportListOptions_SelectedItemsOnly = 4  '&H4
End Enum

ColumnSortOrder

enum, 2 members.
Public Enum ColumnSortOrder
  SortOrder_Ascending = 0  '&H0
  SortOrder_Descending = 1  '&H1
End Enum
WUtils.com