다음을 통해 공유


Worksheet.ProtectContents Property (Excel)

True if the contents of the sheet are protected. This protects the individual cells. To turn on content protection, use the Protect method with the Contents argument set to True. Read-only Boolean.

Syntax

.ProtectContents

A variable that represents a Worksheet object.

Example

This example displays a message box if the contents of Sheet1 are protected.

If Worksheets("Sheet1").ProtectContents = True Then 
 MsgBox "The contents of Sheet1 are protected." 
End If

참고 항목

개념

Worksheet Object

Worksheet Object Members