IVsUIShell.GetPreviousBFNavigationItem(IVsWindowFrame, String, Object) 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 previous backward and forward navigation item.
public:
int GetPreviousBFNavigationItem([Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame ^ % ppWindowFrame, [Runtime::InteropServices::Out] System::String ^ % pbstrData, [Runtime::InteropServices::Out] System::Object ^ % ppunk);
int GetPreviousBFNavigationItem([Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame const & & ppWindowFrame, [Runtime::InteropServices::Out] std::wstring const & & pbstrData, [Runtime::InteropServices::Out] winrt::Windows::Foundation::IInspectable const & & ppunk);
public int GetPreviousBFNavigationItem (out Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame ppWindowFrame, out string pbstrData, out object ppunk);
abstract member GetPreviousBFNavigationItem : IVsWindowFrame * string * obj -> int
Public Function GetPreviousBFNavigationItem (ByRef ppWindowFrame As IVsWindowFrame, ByRef pbstrData As String, ByRef ppunk As Object) As Integer
Parameters
- ppWindowFrame
- IVsWindowFrame
[out] Pointer to the window frame for the window containing the backward and forward navigation item.
- pbstrData
- String
[out] Any arbitrary data that is needed for the navigation point (insertion point).
- ppunk
- Object
[out] Pointer to a specific interface for the navigation point.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsUIShell::GetPreviousBFNavigationItem(
[out] IVsWindowFrame **ppWindowFrame,
[out] BSTR * pbstrData,
[out] IUnknown **ppunk
);