Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Called after a document window is placed in the Hide state.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function OnAfterDocumentWindowHide ( _
    docCookie As UInteger, _
    pFrame As IVsWindowFrame _
) As Integer
int OnAfterDocumentWindowHide(
    uint docCookie,
    IVsWindowFrame pFrame
)
int OnAfterDocumentWindowHide(
    [InAttribute] unsigned int docCookie, 
    [InAttribute] IVsWindowFrame^ pFrame
)
abstract OnAfterDocumentWindowHide : 
        docCookie:uint32 * 
        pFrame:IVsWindowFrame -> int
function OnAfterDocumentWindowHide(
    docCookie : uint, 
    pFrame : IVsWindowFrame
) : int
Parameters
- docCookie 
 Type: UInt32- [in] Abstract value representing the document whose window has been hidden. 
- pFrame 
 Type: Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame- [in] The IVsWindowFrame interface representing the frame containing the document's window. 
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
This method is called when the document's window is hidden.
COM Signature
From vsshell.idl:
HRESULT IVsRunningDocTableEvents::OnAfterDocumentWindowHide(
   [in] VSCOOKIE docCookie,
   [in] IVsWindowFrame *pFrame
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.