IVsSwatchClient.SelectionUpdate Method
This interface is deprecated as of Visual Studio 2010. The Visual Studio shell no longer recognizes this interface.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function SelectionUpdate ( _
<OutAttribute> ByRef pxCur As Integer, _
<OutAttribute> ByRef pyCur As Integer _
) As Integer
int SelectionUpdate(
out int pxCur,
out int pyCur
)
int SelectionUpdate(
[InAttribute] [OutAttribute] int% pxCur,
[InAttribute] [OutAttribute] int% pyCur
)
abstract SelectionUpdate :
pxCur:int byref *
pyCur:int byref -> int
function SelectionUpdate(
pxCur : int,
pyCur : int
) : int
Parameters
pxCur
Type: Int32%[In, Out] A pointer to an integer value.
pyCur
Type: Int32%[In, Out] A pointer to an integer value.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsSwatchClient::SelectionUpdate(
[in, out] int *pxCur,
[in, out] int *pyCur
);
.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.