Application.ProtectedViewWindowSize Event (Word)
Version Information
Version Added: Word 2010
Syntax
expression .ProtectedViewWindowSize(PvWindow, )
expression An expression that returns a Application object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
PvWindow |
Required |
The protected view window that is sized. |
Example
The following code example displays a message every time a protected view window is moved or resized. This code must be placed in a class module, and an instance of the class must be correctly initialized for this code example to work correctly. For more information about how to do this, see Using Events with the Application Object.
The following code example assumes that you have declared an application variable called "App" in your general declarations and have set the variable equal to the Word Application object.
Private Sub App_ProtectedViewWindowSize(ByVal PvWindow As ProtectedViewWindow)
MsgBox "You resized a window!"
End Sub