SimpleEditorView.Exec Method
Executes the specified command.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
Microsoft.VisualStudio.Package.LanguageService.11.0 (in Microsoft.VisualStudio.Package.LanguageService.11.0.dll)
Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Syntax
'Declaración
Public Overridable Function Exec ( _
ByRef guidCmdGroup As Guid, _
id As UInteger, _
options As UInteger, _
pvaIn As IntPtr, _
pvaOut As IntPtr _
) As Integer
public virtual int Exec(
ref Guid guidCmdGroup,
uint id,
uint options,
IntPtr pvaIn,
IntPtr pvaOut
)
Parameters
- guidCmdGroup
Type: System.Guid%
The GUID of the command group.
- id
Type: System.UInt32
The ID of the command.
- options
Type: System.UInt32
An OLECMDEXECOPT enumeration giving command options.
- pvaIn
Type: System.IntPtr
Pointer to a VARIANTARG structure containing input arguments. Can be nulla null reference (Nothing in Visual Basic).
- pvaOut
Type: System.IntPtr
Pointer to a VARIANTARG structure containing command output. Can be nulla null reference (Nothing in Visual Basic).
Return Value
Type: System.Int32
S_OK if the command is supported and it succeeded; OLECMDERR_E_NOTSUPPORTED if the command is not supported; or an error code if the command failed.
Implements
IOleCommandTarget.Exec(Guid%, UInt32, UInt32, IntPtr, IntPtr)
.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.