IVsWindowFrame::QueryViewInterface Method (Guid, IntPtr)
Visual Studio 2015
Provides IVsWindowFrame with a view helper (VSFPROPID_ViewHelper) inserted into its list of event notifications.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- riid
-
Type:
System::Guid
[in] Identifier of the window frame being requested.
- ppv
-
Type:
System::IntPtr
[out, iid_is(riid)] Address of pointer variable that receives the window frame pointer requested in riid.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsWindowFrame::QueryViewInterface( [in] REFIID riid, [out, iid_is(riid)] void ** ppv );
Similar to the implementation of QueryInterface, except that you are calling on ViewHelper.
Show: