|
// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
#pragma warning disable CS1591,CS1573,CS0465,CS0649,CS8019,CS1570,CS1584,CS1658,CS0436,CS8981
using global::System;
using global::System.Diagnostics;
using global::System.Diagnostics.CodeAnalysis;
using global::System.Runtime.CompilerServices;
using global::System.Runtime.InteropServices;
using global::System.Runtime.Versioning;
using winmdroot = global::Windows.Win32;
namespace Windows.Win32
{
namespace System.Ole
{
/// <summary>Specifies which standard command is to be executed. A single value from this enumeration is passed in the nCmdID argument of IOleCommandTarget::Exec.</summary>
/// <remarks>
/// <para>In OLE Compound Documents technology, an object that is being edited in-place disables the <b>Zoom</b> control on its toolbar and the <b>Zoom</b> command on its <b>View</b> menu, because, the <b>Zoom</b> command applies logically to the container document, not to the object. The OLECMDID_ZOOM and OLECMDID_GETZOOMRANGE commands notify the container's frame object of the zoom range it should use to display a document object in its user interface. The container frame is the client-side object that implements <a href="https://docs.microsoft.com/windows/desktop/api/oleidl/nn-oleidl-ioleinplaceframe">IOleInPlaceFrame</a> and, optionally, <a href="https://docs.microsoft.com/windows/desktop/api/docobj/nn-docobj-iolecommandtarget">IOleCommandTarget</a>.</para>
/// <para>The OLECMDID_ZOOM command takes one <b>LONG</b> argument as input and writes one <b>LONG</b> argument on output. This command is used for three purposes:</para>
/// <para></para>
/// <para>This doc was truncated.</para>
/// <para><see href="https://learn.microsoft.com/windows/win32/api/docobj/ne-docobj-olecmdid#">Read more on docs.microsoft.com</see>.</para>
/// </remarks>
[global::System.CodeDom.Compiler.GeneratedCode("Microsoft.Windows.CsWin32", "0.3.151+58e949951d.RR")]
internal enum OLECMDID
{
/// <summary><b>File</b> menu, <b>Open</b> command</summary>
OLECMDID_OPEN = 1,
/// <summary><b>File</b> menu, <b>New</b> command</summary>
OLECMDID_NEW = 2,
/// <summary><b>File</b> menu, <b>Save</b> command</summary>
OLECMDID_SAVE = 3,
/// <summary><b>File</b> menu, <b>Save As</b> command</summary>
OLECMDID_SAVEAS = 4,
/// <summary><b>File</b> menu, <b>Save Copy As</b> command</summary>
OLECMDID_SAVECOPYAS = 5,
/// <summary><b>File</b> menu, <b>Print</b> command</summary>
OLECMDID_PRINT = 6,
/// <summary><b>File</b> menu, <b>Print Preview</b> command</summary>
OLECMDID_PRINTPREVIEW = 7,
/// <summary><b>File</b> menu, <b>Page Setup</b> command</summary>
OLECMDID_PAGESETUP = 8,
/// <summary><b>Tools</b> menu, <b>Spelling</b> command</summary>
OLECMDID_SPELL = 9,
/// <summary><b>File</b> menu, <b>Properties</b> command</summary>
OLECMDID_PROPERTIES = 10,
/// <summary><b>Edit</b> menu, <b>Cut</b> command</summary>
OLECMDID_CUT = 11,
/// <summary><b>Edit</b> menu, <b>Copy</b> command</summary>
OLECMDID_COPY = 12,
/// <summary><b>Edit</b> menu, <b>Paste</b> command</summary>
OLECMDID_PASTE = 13,
/// <summary><b>Edit</b> menu, <b>Paste Special</b> command</summary>
OLECMDID_PASTESPECIAL = 14,
/// <summary><b>Edit</b> menu, <b>Undo</b> command</summary>
OLECMDID_UNDO = 15,
/// <summary><b>Edit</b> menu, <b>Redo</b> command</summary>
OLECMDID_REDO = 16,
/// <summary><b>Edit</b> menu, <b>Select All</b> command</summary>
OLECMDID_SELECTALL = 17,
/// <summary><b>Edit</b> menu, <b>Clear</b> command</summary>
OLECMDID_CLEARSELECTION = 18,
/// <summary><b>View</b> menu, <b>Zoom</b> command (see below for details.)</summary>
OLECMDID_ZOOM = 19,
/// <summary>Retrieves zoom range applicable to <b>View Zoom</b> (see below for details.)</summary>
OLECMDID_GETZOOMRANGE = 20,
/// <summary>Informs the receiver, usually a frame, of state changes. The receiver can then query the status of the commands whenever convenient.</summary>
OLECMDID_UPDATECOMMANDS = 21,
/// <summary>Asks the receiver to refresh its display. Implemented by the document/object.</summary>
OLECMDID_REFRESH = 22,
/// <summary>Stops all current processing. Implemented by the document/object.</summary>
OLECMDID_STOP = 23,
/// <summary><b>View</b> menu, <b>Toolbars</b> command. Implemented by the document/object to hide its toolbars.</summary>
OLECMDID_HIDETOOLBARS = 24,
/// <summary>Sets the maximum value of a progress indicator if one is owned by the receiving object, usually a frame. The minimum value is always zero.</summary>
OLECMDID_SETPROGRESSMAX = 25,
/// <summary>Sets the current value of a progress indicator if one is owned by the receiving object, usually a frame.</summary>
OLECMDID_SETPROGRESSPOS = 26,
/// <summary>Sets the text contained in a progress indicator if one is owned by the receiving object, usually a frame. If the receiver currently has no progress indicator, this text should be displayed in the status bar (if one exists) as with <a href="https://docs.microsoft.com/windows/desktop/api/oleidl/nf-oleidl-ioleinplaceframe-setstatustext">IOleInPlaceFrame::SetStatusText</a>.</summary>
OLECMDID_SETPROGRESSTEXT = 27,
/// <summary>Sets the title bar text of the receiving object, usually a frame.</summary>
OLECMDID_SETTITLE = 28,
/// <summary>Called by the object when downloading state changes. Takes a VT_BOOL parameter, which is <b>TRUE</b> if the object is downloading data and <b>FALSE</b> if it not. Primarily implemented by the frame.</summary>
OLECMDID_SETDOWNLOADSTATE = 29,
/// <summary>Stops the download when executed. Typically, this command is propagated to all contained objects. When queried, sets MSOCMDF_ENABLED. Implemented by the document/object.</summary>
OLECMDID_STOPDOWNLOAD = 30,
/// <summary></summary>
OLECMDID_ONTOOLBARACTIVATED = 31,
/// <summary><b>Edit</b> menu, <b>Find</b> command</summary>
OLECMDID_FIND = 32,
/// <summary><b>Edit</b> menu, <b>Delete</b> command</summary>
OLECMDID_DELETE = 33,
/// <summary>Issued in response to <b>HTTP-EQUIV</b> metatag and results in a call to the deprecated <a href="https://docs.microsoft.com/windows/desktop/api/shdeprecated/nf-shdeprecated-ibrowserservice-onhttpequiv">OnHttpEquiv</a> method with the <i>fDone</i> parameter set to <b>false</b>. This command takes a <b>VT_BSTR</b> parameter which is passed to <b>OnHttpEquiv</b>.</summary>
OLECMDID_HTTPEQUIV = 34,
/// <summary>Issued in response to <b>HTTP-EQUIV</b> metatag and results in a call to the deprecated <a href="https://docs.microsoft.com/windows/desktop/api/shdeprecated/nf-shdeprecated-ibrowserservice-onhttpequiv">OnHttpEquiv</a> method with the <i>fDone</i> parameter set to <b>true</b>. This command takes a <b>VT_BSTR</b> parameter which is passed to <b>OnHttpEquiv</b>.</summary>
OLECMDID_HTTPEQUIV_DONE = 35,
/// <summary>Pauses or resumes receiver interaction. This command takes a <b>VT_BOOL</b> parameter that pauses interaction when set to <b>FALSE</b> and resumes interaction when set to <b>TRUE</b>.</summary>
OLECMDID_ENABLE_INTERACTION = 36,
/// <summary>Notifies the receiver of an intent to close the window imminently. This command takes a <b>VT_BOOL</b> output parameter that returns <b>TRUE</b> if the receiver can close and <b>FALSE</b> if it can't.</summary>
OLECMDID_ONUNLOAD = 37,
/// <summary>This command has no effect.</summary>
OLECMDID_PROPERTYBAG2 = 38,
/// <summary>Notifies the receiver that a refresh is about to start.</summary>
OLECMDID_PREREFRESH = 39,
/// <summary>Tells the receiver to display the script error message.</summary>
OLECMDID_SHOWSCRIPTERROR = 40,
/// <summary>This command takes an <a href="https://docs.microsoft.com/previous-versions/hh773930(v=vs.85)">IHTMLEventObj</a> input parameter that contains a message that the receiver shows.</summary>
OLECMDID_SHOWMESSAGE = 41,
/// <summary>Tells the receiver to show the Find dialog box. It takes a <b>VT_DISPATCH</b> input param.</summary>
OLECMDID_SHOWFIND = 42,
/// <summary>Tells the receiver to show the Page Setup dialog box. It takes an <a href="https://docs.microsoft.com/previous-versions/hh773930(v=vs.85)">IHTMLEventObj2</a> input parameter.</summary>
OLECMDID_SHOWPAGESETUP = 43,
/// <summary>Tells the receiver to show the Print dialog box. It takes an <a href="https://docs.microsoft.com/previous-versions/hh773930(v=vs.85)">IHTMLEventObj2</a> input parameter.</summary>
OLECMDID_SHOWPRINT = 44,
/// <summary>The exit command for the File menu.</summary>
OLECMDID_CLOSE = 45,
/// <summary>Supports the <a href="https://docs.microsoft.com/windows/desktop/api/docobj/nf-docobj-iolecommandtarget-querystatus">QueryStatus</a> method.</summary>
OLECMDID_ALLOWUILESSSAVEAS = 46,
/// <summary>Notifies the receiver that CSS files should not be downloaded when in <a href="https://docs.microsoft.com/windows/desktop/api/shobjidl_core/nn-shobjidl_core-iapplicationdesignmodesettings">DesignMode</a>.</summary>
OLECMDID_DONTDOWNLOADCSS = 47,
/// <summary>This command has no effect.</summary>
OLECMDID_UPDATEPAGESTATUS = 48,
/// <summary><b>File</b> menu, updated <b>Print</b> command</summary>
OLECMDID_PRINT2 = 49,
/// <summary><b>File</b> menu, updated <b>Print Preview</b> command</summary>
OLECMDID_PRINTPREVIEW2 = 50,
/// <summary>Sets an explicit Print Template value of <b>TRUE</b> or <b>FALSE</b>, based on a <b>VT_BOOL</b> input parameter.</summary>
OLECMDID_SETPRINTTEMPLATE = 51,
/// <summary>Gets a <b>VT_BOOL</b> output parameter indicating whether the Print Template value is <b>TRUE</b> or <b>FALSE</b>.</summary>
OLECMDID_GETPRINTTEMPLATE = 52,
/// <summary>Indicates that a page action has been blocked. PAGEACTIONBLOCKED is designed for use with applications that host the Internet Explorer WebBrowser control to implement their own UI.</summary>
OLECMDID_PAGEACTIONBLOCKED = 55,
/// <summary>Specifies which actions are displayed in the Internet Explorer notification band.</summary>
OLECMDID_PAGEACTIONUIQUERY = 56,
/// <summary>Causes the Internet Explorer WebBrowser control to focus its default notification band. Hosts can send this command at any time. The return value is S_OK if the band is present and is in focus, or S_FALSE otherwise.</summary>
OLECMDID_FOCUSVIEWCONTROLS = 57,
/// <summary>This notification event is provided for applications that display Internet Explorers default notification band implementation. By default, when the user presses the ALT-N key combination, Internet Explorer treats it as a request to focus the notification band.</summary>
OLECMDID_FOCUSVIEWCONTROLSQUERY = 58,
/// <summary>Causes the Internet Explorer WebBrowser control to show the Information Bar menu.</summary>
OLECMDID_SHOWPAGEACTIONMENU = 59,
/// <summary>Causes the Internet Explorer WebBrowser control to create an entry at the current Travel Log offset. The Docobject should implement <a href="https://docs.microsoft.com/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa768478(v=vs.85)">ITravelLogClient</a> and <a href="https://docs.microsoft.com/windows/desktop/api/objidl/nn-objidl-ipersist">IPersist</a> interfaces, which are used by the Travel Log as it processes this command with calls to GetWindowData and GetPersistID, respectively.</summary>
OLECMDID_ADDTRAVELENTRY = 60,
/// <summary>Called when LoadHistory is processed to update the previous Docobject state. For synchronous handling, this command can be called before returning from the LoadHistory call. For asynchronous handling, it can be called later.</summary>
OLECMDID_UPDATETRAVELENTRY = 61,
/// <summary>Updates the state of the browser's Back and Forward buttons.</summary>
OLECMDID_UPDATEBACKFORWARDSTATE = 62,
/// <summary>Windows Internet Explorer 7 and later. Sets the zoom factor of the browser. Takes a VT_I4 parameter in the range of 10 to 1000 (percent).</summary>
OLECMDID_OPTICAL_ZOOM = 63,
/// <summary>Windows Internet Explorer 7 and later. Retrieves the minimum and maximum browser zoom factor limits. Returns a VT_I4 parameter; the LOWORD is the minimum zoom factor, the HIWORD is the maximum.</summary>
OLECMDID_OPTICAL_GETZOOMRANGE = 64,
/// <summary>Windows Internet Explorer 7 and later. Notifies the Internet Explorer WebBrowser control of changes in window states, such as losing focus, or becoming hidden or minimized. The host indicates what has changed by setting OLECMDID_WINDOWSTATE_FLAG option flags in nCmdExecOpt.</summary>
OLECMDID_WINDOWSTATECHANGED = 65,
/// <summary>Windows Internet Explorer 8 with Windows Vista. Has no effect with Windows Internet Explorer 8 with Windows XP. Notifies Trident to use the indicated Install Scope to install the ActiveX Control specified by the indicated Class ID. For more information, see the Remarks section.</summary>
OLECMDID_ACTIVEXINSTALLSCOPE = 66,
/// <summary>Internet Explorer 8. Unlike OLECMDID_UPDATETRAVELENTRY, this updates a Travel Log entry that is not initialized from a previous Docobject state. While this command is not called from <a href="https://docs.microsoft.com/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa768216(v=vs.85)">IPersistHistory::LoadHistory</a>, it can be called separately to save browser state that can be used later to recover from a crash.</summary>
OLECMDID_UPDATETRAVELENTRY_DATARECOVERY = 67,
/// <summary></summary>
OLECMDID_SHOWTASKDLG = 68,
/// <summary></summary>
OLECMDID_POPSTATEEVENT = 69,
/// <summary></summary>
OLECMDID_VIEWPORT_MODE = 70,
/// <summary></summary>
OLECMDID_LAYOUT_VIEWPORT_WIDTH = 71,
/// <summary></summary>
OLECMDID_VISUAL_VIEWPORT_EXCLUDE_BOTTOM = 72,
/// <summary></summary>
OLECMDID_USER_OPTICAL_ZOOM = 73,
/// <summary></summary>
OLECMDID_PAGEAVAILABLE = 74,
/// <summary></summary>
OLECMDID_GETUSERSCALABLE = 75,
/// <summary></summary>
OLECMDID_UPDATE_CARET = 76,
/// <summary></summary>
OLECMDID_ENABLE_VISIBILITY = 77,
/// <summary></summary>
OLECMDID_MEDIA_PLAYBACK = 78,
/// <summary></summary>
OLECMDID_SETFAVICON = 79,
/// <summary></summary>
OLECMDID_SET_HOST_FULLSCREENMODE = 80,
/// <summary></summary>
OLECMDID_EXITFULLSCREEN = 81,
/// <summary></summary>
OLECMDID_SCROLLCOMPLETE = 82,
/// <summary></summary>
OLECMDID_ONBEFOREUNLOAD = 83,
/// <summary></summary>
OLECMDID_SHOWMESSAGE_BLOCKABLE = 84,
/// <summary></summary>
OLECMDID_SHOWTASKDLG_BLOCKABLE = 85,
}
}
}
|