Document.PasswordEncryptionProvider 属性 (Word)
返回一个 字符串 ,指定 Microsoft Word 在用密码对文档加密时使用的算法加密提供程序的名称。 此为只读属性。
语法
expression。 PasswordEncryptionProvider
表达 一个代表 Document 对象的变量。
备注
使用 SetPasswordEncryptionOptions 方法指定 Word 在用密码对文档加密时使用的算法加密提供程序的名称。
示例
如果当前使用的密码加密算法提供程序不是“Microsoft RSA SChannel Cryptographic Provider”,则本示例将设置密码加密选项。
Sub PasswordSettings()
With ActiveDocument
If .PasswordEncryptionProvider <> "Microsoft RSA SChannel Cryptographic Provider" Then
.SetPasswordEncryptionOptions _
PasswordEncryptionProvider:="Microsoft RSA SChannel Cryptographic Provider", _
PasswordEncryptionAlgorithm:="RC4", _
PasswordEncryptionKeyLength:=56, _
PasswordEncryptionFileProperties:=True
End If
End With
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。