Skip to content

Latest commit

 

History

History
60 lines (36 loc) · 1.87 KB

Excel.Application.ProtectedViewWindowBeforeEdit.md

File metadata and controls

60 lines (36 loc) · 1.87 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.ProtectedViewWindowBeforeEdit event (Excel)
vbaxl10.chm504109
vbaxl10.chm504109
Excel.Application.ProtectedViewWindowBeforeEdit
b823b4a4-5d2f-7caf-f66f-5053b58082e4
04/05/2019
medium

Application.ProtectedViewWindowBeforeEdit event (Excel)

Occurs immediately before editing is enabled on the workbook in the specified Protected View window.

Syntax

expression.ProtectedViewWindowBeforeEdit (Pvw, Cancel)

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
Pvw Required ProtectedViewWindow The Protected View window that contains the workbook that is enabled for editing.
Cancel Required Boolean False when the event occurs. If the event procedure sets this argument to True, editing is not enabled on the workbook.

Return value

Nothing

Example

The following code example prompts the user for a yes or no response before enabling editing on a workbook in a Protected View window. This code must be placed in a class module, and an instance of the class must be correctly initialized.

For more information about how to use event procedures with the Application object, see Using events with the Application object.

Private Sub App_ProtectedViewWindowBeforeEdit(ByVal Pvw As ProtectedViewWindow, Cancel As Boolean) 
 Dim intResponse As Integer 
 
 intResponse = MsgBox("Do you really " _ 
 & "want to edit the workbook?", _ 
 vbYesNo) 
 
 If intResponse = vbNo Then Cancel = True 
End Sub

[!includeSupport and feedback]