Description
Specifies the standard commands supplied by the quick access toolbar.
The standard commands for the quick access toolbar are those default commands that all applications should implement in order to maintain user interface consistency. The enumeration is a bit-field enumeration so that an application can include or exclude certain standard commands at one time using the DefaultCommands property in the quick access toolbar data source (QuickAccessToolBarSource).
Visual Basic
Public Enum QuickAccessStandardCommands Inherits uint All = &H1f New = 1 None = 0 Open = 2 Redo = &H10 Save = 4 Undo = 8 End Enum
C#
public enum QuickAccessStandardCommands : uint { All = 0x1f, New = 1, None = 0, Open = 2, Redo = 0x10, Save = 4, Undo = 8 }