WindowEventsClass.WindowMoved 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 after a window is moved or resized.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
virtual event EnvDTE::_dispWindowEvents_WindowMovedEventHandler ^ WindowMoved;
public:
virtual event EnvDTE::_dispWindowEvents_WindowMovedEventHandler ^ WindowMoved;
public virtual event EnvDTE._dispWindowEvents_WindowMovedEventHandler WindowMoved;
member this.WindowMoved : EnvDTE._dispWindowEvents_WindowMovedEventHandler
Public Overridable Custom Event WindowMoved As _dispWindowEvents_WindowMovedEventHandler Implements WindowMoved
Event Type
Implements
Examples
Public Sub WindowEvents_WindowMoved(ByVal Window As EnvDTE.Window, ByVal Top As Integer, ByVal Left As Integer, ByVal [Width] As Integer, ByVal Height As Integer) Handles WindowEvents.WindowMoved
MsgBox("test")
End Sub