ApplicationEvents4_WindowSizeEventHandler Delegate
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.
A Delegate type used to add an event handler for the WindowSize event. The WindowSize event occurs when the application window is resized or moved.
public delegate void ApplicationEvents4_WindowSizeEventHandler(Document ^ Doc, Window ^ Wn);
[System.Runtime.InteropServices.ComVisible(false)]
public delegate void ApplicationEvents4_WindowSizeEventHandler(Document Doc, Window Wn);
type ApplicationEvents4_WindowSizeEventHandler = delegate of Document * Window -> unit
Public Delegate Sub ApplicationEvents4_WindowSizeEventHandler(Doc As Document, Wn As Window)
Parameters
- Doc
- Document
The document in the window being sized.
- Wn
- Window
The window being sized.
- Attributes