Share via


IVsRunningDocTableEvents.OnBeforeDocumentWindowShow Method

Definition

Called before displaying a document window.

public:
 int OnBeforeDocumentWindowShow(unsigned int docCookie, int fFirstShow, Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame ^ pFrame);

Parameters

docCookie
UInt32

[in] Abstract value representing the document whose window is about to be shown.

fFirstShow
Int32

[in] Non-zero (TRUE) if the document window is being displayed for the first time.

pFrame
IVsWindowFrame

[in] The IVsWindowFrame 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.

Remarks

This method is called just before the document's window is shown.

COM Signature

From vsshell.idl:

HRESULT IVsRunningDocTableEvents::OnBeforeDocumentWindowShow(  
   [in] VSCOOKIE docCookie,  
   [in] BOOL fFirstShow,  
   [in] IVsWindowFrame *pFrame  
);  

Applies to