Skip to content

Latest commit

 

History

History
52 lines (28 loc) · 1.56 KB

Word.Application.ProtectedViewWindowActivate.md

File metadata and controls

52 lines (28 loc) · 1.56 KB
title api_name ms.assetid ms.date ms.localizationpriority
Application.ProtectedViewWindowActivate event (Word)
Word.Application.ProtectedViewWindowActivate
ae68e1aa-7cec-cd76-ee0e-71a051c5b6e3
06/08/2017
medium

Application.ProtectedViewWindowActivate event (Word)

Occurs when any Protected View window is activated.

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

Application Object

[!includeSupport and feedback]