Application.ProtectedViewWindowDeactivate event (Word)

Occurs when a Protected View window is deactivated.

Syntax

expression. ProtectedViewWindowDeactivate( _PvWindow_ , )

expression An expression that returns a 'Application' object.

Parameters

Name Required/Optional Data type Description
PvWindow Required ProtectedViewWindow The deactivated Protected View window.

Example

The following code example minimizes an open Protected View window when it is deactivated. 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_ProtectedViewWindowDeactivate(ByVal PvWindow As ProtectedViewWindow) 
 PvWindow.WindowState = wdWindowStateMinimize 
End Sub

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.