Worksheet.ProtectDrawingObjects property (Excel)
True if shapes are protected. To turn on shape protection, use the Protect method with the DrawingObjects argument set to True. Read-only Boolean.
Syntax
expression.ProtectDrawingObjects
expression A variable that represents a Worksheet object.
Example
This example displays a message box if the shapes on Sheet1 are protected.
If Worksheets("Sheet1").ProtectDrawingObjects = True Then
MsgBox "The shapes on Sheet1 are protected."
End If
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.