WindowEventsClass.WindowClosing Event
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.
Occurs just before a window closes.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
virtual event EnvDTE::_dispWindowEvents_WindowClosingEventHandler ^ WindowClosing;
public:
virtual event EnvDTE::_dispWindowEvents_WindowClosingEventHandler ^ WindowClosing;
public virtual event EnvDTE._dispWindowEvents_WindowClosingEventHandler WindowClosing;
member this.WindowClosing : EnvDTE._dispWindowEvents_WindowClosingEventHandler
Public Overridable Custom Event WindowClosing As _dispWindowEvents_WindowClosingEventHandler Implements WindowClosing
Event Type
Implements
Examples
Public Sub WindowEvents_WindowClosing(ByVal Window As EnvDTE.Window) Handles WindowEvents.WindowClosing
MsgBox("test")
End Sub