Application.ProtectedViewWindowActivate Event (Word)

Occurs when any protected view window is activated.

Version Information

Version Added: Word 2010

Syntax

expression .ProtectedViewWindowActivate(PvWindow, )

expression An expression that returns a Application object.

Parameters

Name

Required/Optional

Data Type

Description

PvWindow

Required

ProtectedViewWindow

The protected view window that is activated.

Example

The following code example maximizes any protected view window when it is activated. This code must be placed in a class module, and an instance of the class must be correctly initialized to see this example work. 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_ProtectedViewWindowActivate(ByVal PvWindow As ProtectedViewWindow) 
 PvWindow.WindowState = wdWindowStateMaximize 
End Sub

See Also

Concepts

Application Object

Application Object Members