Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Obsolete. Do not use.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function ExecCmdForTextPos ( _
pTextPos As VsTextPos(), _
ByRef pguidCmdGroup As Guid, _
nCmdID As UInteger, _
nCmdexecopt As UInteger, _
pvaIn As IntPtr, _
pvaOut As IntPtr _
) As Integer
int ExecCmdForTextPos(
VsTextPos[] pTextPos,
ref Guid pguidCmdGroup,
uint nCmdID,
uint nCmdexecopt,
IntPtr pvaIn,
IntPtr pvaOut
)
int ExecCmdForTextPos(
[InAttribute] array<VsTextPos>^ pTextPos,
[InAttribute] Guid% pguidCmdGroup,
[InAttribute] unsigned int nCmdID,
[InAttribute] unsigned int nCmdexecopt,
[InAttribute] IntPtr pvaIn,
[InAttribute] IntPtr pvaOut
)
abstract ExecCmdForTextPos :
pTextPos:VsTextPos[] *
pguidCmdGroup:Guid byref *
nCmdID:uint32 *
nCmdexecopt:uint32 *
pvaIn:IntPtr *
pvaOut:IntPtr -> int
function ExecCmdForTextPos(
pTextPos : VsTextPos[],
pguidCmdGroup : Guid,
nCmdID : uint,
nCmdexecopt : uint,
pvaIn : IntPtr,
pvaOut : IntPtr
) : int
Parameters
- pTextPos
Type: array<Microsoft.VisualStudio.Shell.Interop.VsTextPos[]
[in] Do not use.
- pguidCmdGroup
Type: System.Guid%
[in] Do not use.
- nCmdID
Type: System.UInt32
[in] Do not use.
- nCmdexecopt
Type: System.UInt32
[in] Do not use.
- pvaIn
Type: System.IntPtr
[in] Do not use.
- pvaOut
Type: System.IntPtr
[in] Do not use.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsDebugger::ExecCmdForTextPos(
[in] VsTextPos *pTextPos,
[unique][in] const GUID *pguidCmdGroup,
[in] DWORD nCmdID, [in] DWORD nCmdexecopt,
[unique][in] VARIANT *pvaIn,
[unique][out][in] VARIANT *pvaOut
);
.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.