SimpleEditorView.Exec 方法
执行指定的命令。
命名空间: Microsoft.VisualStudio.Package
程序集: Microsoft.VisualStudio.Package.LanguageService.10.0(在 Microsoft.VisualStudio.Package.LanguageService.10.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService.9.0(在 Microsoft.VisualStudio.Package.LanguageService.9.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService.11.0(在 Microsoft.VisualStudio.Package.LanguageService.11.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService(在 Microsoft.VisualStudio.Package.LanguageService.dll 中)
语法
声明
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
)
参数
- guidCmdGroup
类型:System.Guid%
命令组的 GUID。
- id
类型:System.UInt32
命令的 ID。
- options
类型:System.UInt32
提供命令的 OLECMDEXECOPT 枚举。
- pvaIn
类型:System.IntPtr
对包含输入参数的 VARIANTARG 结构的指针。可以为 nullnull 引用(在 Visual Basic 中为 Nothing)。
- pvaOut
类型:System.IntPtr
对包含命令输出的 VARIANTARG 结构的指针。可以为 nullnull 引用(在 Visual Basic 中为 Nothing)。
返回值
类型:System.Int32
S_OK ,如果命令支持及其成功; OLECMDERR_E_NOTSUPPORTED ,如果命令不支持;或错误代码,如果命令失败。
实现
IOleCommandTarget.Exec(Guid%, UInt32, UInt32, IntPtr, IntPtr)
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。