HasPassword Property

Applies To

Document object.

Description

True if a password is required to open the specified document. Read-only Boolean.

See Also

Password property, WritePassword property.

Example

This example sets the password "kittycat" for the active document and then displays a confirmation message.

ActiveDocument.Password = "kittycat"
If ActiveDocument.HasPassword = True Then MsgBox "The password is set."