IVsTaskList2.GetCaretPos(IVsTaskItem) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the item that currently has the caret. This item is always among the selected items.
public:
int GetCaretPos([Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsTaskItem ^ % ppItem);
public:
int GetCaretPos([Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsTaskItem ^ & ppItem);
int GetCaretPos([Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsTaskItem const & & ppItem);
public int GetCaretPos (out Microsoft.VisualStudio.Shell.Interop.IVsTaskItem ppItem);
abstract member GetCaretPos : IVsTaskItem -> int
Public Function GetCaretPos (ByRef ppItem As IVsTaskItem) As Integer
Parameters
- ppItem
- IVsTaskItem
[out] A pointer to a pointer to an object of type IVsEnumTaskItems.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
If no item has the caret, this method will return NULL.
COM Signature
From vsshell80.idl:
HRESULT GetCaretPos(
[out] IVsTaskItem** ppItem
);