IVsRunningDocTableEvents2.OnAfterDocumentWindowHide 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.
Called after a document window is hidden.
public:
int OnAfterDocumentWindowHide(System::UInt32 docCookie, Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame ^ pFrame);
public:
int OnAfterDocumentWindowHide(unsigned int docCookie, Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame ^ pFrame);
int OnAfterDocumentWindowHide(unsigned int docCookie, Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame const & pFrame);
public int OnAfterDocumentWindowHide (uint docCookie, Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame pFrame);
abstract member OnAfterDocumentWindowHide : uint32 * Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame -> int
Public Function OnAfterDocumentWindowHide (docCookie As UInteger, pFrame As IVsWindowFrame) As Integer
Parameters
- docCookie
- UInt32
[in] Abstract value representing the document whose attributes have been changed.
- pFrame
- IVsWindowFrame
[in] The IVsWindowFrame interface object representing the frame containing the document's window.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsRunningDocTableEvents2::OnAfterDocumentWindowHide(
[in] VSCOOKIE docCookie,
[in] IVsWindowFrame *pFrame
);
This method is called when the document's window is hidden.