Presentation.PasswordEncryptionAlgorithm 屬性 (PowerPoint)
會傳回 Microsoft PowerPoint 用於以密碼加密文件的演算法。 唯讀。
語法
expression。 PasswordEncryptionAlgorithm
表達 代表 Presentation 物件的變數。
傳回值
字串
註解
若要指定 PowerPoint 以密碼加密文件的演算法使用 SetPasswordEncryptionOptions 方法。
範例
如果使用中的密碼加密演算法不是 RC4,則本範例會設定密碼加密選項。
Sub PasswordSettings()
With ActivePresentation
If .PasswordEncryptionAlgorithm <> "RC4" Then
.SetPasswordEncryptionOptions _
PasswordEncryptionProvider:="Microsoft RSA SChannel Cryptographic Provider", _
PasswordEncryptionAlgorithm:="RC4", _
PasswordEncryptionKeyLength:=56, _
PasswordEncryptionFileProperties:=True
End If
End With
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。