OleMenuCommandService.IOleCommandTarget.Exec Method
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Executes the selected command.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
'Declaration
Private Function Exec ( _
ByRef guidGroup As Guid, _
nCmdId As UInteger, _
nCmdExcept As UInteger, _
pIn As IntPtr, _
vOut As IntPtr _
) As Integer Implements IOleCommandTarget.Exec
int IOleCommandTarget.Exec(
ref Guid guidGroup,
uint nCmdId,
uint nCmdExcept,
IntPtr pIn,
IntPtr vOut
)
private:
virtual int Exec(
Guid% guidGroup,
unsigned int nCmdId,
unsigned int nCmdExcept,
IntPtr pIn,
IntPtr vOut
) sealed = IOleCommandTarget::Exec
private abstract Exec :
guidGroup:Guid byref *
nCmdId:uint32 *
nCmdExcept:uint32 *
pIn:IntPtr *
vOut:IntPtr -> int
private override Exec :
guidGroup:Guid byref *
nCmdId:uint32 *
nCmdExcept:uint32 *
pIn:IntPtr *
vOut:IntPtr -> int
JScript does not support explicit interface implementations.
Parameters
guidGroup
Type: System.Guid%The menu group. This implementation maps the group to CommandID.Guid.
nCmdId
Type: System.UInt32The ID code of the command. This implementation maps nCmdId to CommandID.ID.
nCmdExcept
Type: System.UInt32The number of command options. This implementation ignores this parameter.
pIn
Type: System.IntPtrThe actual command options. This implementation ignores this parameter.
vOut
Type: System.IntPtrOutput data for the command. This implementation ignores this parameter.
Return Value
Type: System.Int32
An HRESULT code indicating the success or failure of the call. The following HRESULTs may be returned:
Value |
Description |
---|---|
The command was successfully invoked. |
|
The group GUID did not match the commandID’s Guid property for any command or verb. |
|
The group was found, but there is no command or verb with an ID that matches. This is also returned if the OleStatus property of a command that was found returns zero. |
Implements
IOleCommandTarget.Exec(Guid%, UInt32, UInt32, IntPtr, IntPtr)
Remarks
This method is defined as a private interface implementation for IOleCommandTarget. To make use of it, a tool or document window generally implements IOleCommandTarget itself, and then forwards calls to the implementation contained in MenuCommandService. This implementation of Exec uses FindCommand to determine if a command exists, and invokes the command if it is disabled.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.