Share via


Application.ProtectedViewWindowBeforeEdit Event (Excel)

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

Version Information

추가된 버전: Excel 2010

Syntax

.ProtectedViewWindowBeforeEdit(Pvw, Cancel)

A variable that represents an Application object.

Parameters

Name

Required/Optional

Data Type

Description

Pvw

필수

ProtectedViewWindow

The Protected View window that contains the workbook that is enabled for editing.

Cancel

필수

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 
 

참고 항목

개념

Application Object

Application Object Members