IVsBackForwardNavigation::NavigateTo Method (IVsWindowFrame^, String^, Object^)

 

Moves the cursor to a specific point.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int NavigateTo(
	IVsWindowFrame^ pFrame,
	String^ bstrData,
	Object^ punk
)

Parameters

pFrame
Type: Microsoft.VisualStudio.Shell.Interop::IVsWindowFrame^

[in] Pointer to the IVsWindowFrame interface.

bstrData
Type: System::String^

[in] Optional. String to match to determine the starting point for the navigation.

punk
Type: System::Object^

[in] Pointer to the IUnknown interface from which to retrieve the navigation points.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsBackForwardNavigation::NavigateTo(
   [in] IVsWindowFrame *pFrame, 
   [in] BSTR bstrData, 
   [in] IUnknown *punk
);
Return to top
Show: