Expand Minimize
This topic has not yet been rated - Rate this topic

Workbook.ProtectWindows Property

Office 2007
True if the windows of the workbook are protected. Read-only Boolean.

Syntax

expression.ProtectWindows

expression   A variable that represents a Workbook object.

Example

This example displays a message if the windows in the active workbook are protected.

Visual Basic for Applications
If ActiveWorkbook.ProtectWindows = True Then
    MsgBox "Remember, you cannot rearrange any" & _
        " window in this workbook."
End If



Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.