DocumentBase.PasswordEncryptionFileProperties プロパティ
Microsoft Office Word で、パスワードで保護された文書ファイルのプロパティを暗号化するかどうかを示す値を取得します。
名前空間: Microsoft.Office.Tools.Word
アセンブリ: Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)
構文
'宣言
Public ReadOnly Property PasswordEncryptionFileProperties As Boolean
public bool PasswordEncryptionFileProperties { get; }
プロパティ値
型 : System.Boolean
Microsoft Office Word で、パスワードで保護された文書のプロパティを暗号化する場合は true、それ以外の場合は false。
解説
Word で、パスワードで保護された文書のプロパティを暗号化するかどうかを指定するには、SetPasswordEncryptionOptions メソッドを使用します。
例
パスワードで保護されている文書ファイルのプロパティが暗号化されていない場合に、パスワード暗号化オプションを設定するコード例を次に示します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。
Private Sub DocumentPasswordEncryptionFileProperties()
If Me.PasswordEncryptionFileProperties = False Then
Dim PasswordEncryptionProvider As String = _
"Microsoft RSA SChannel Cryptographic Provider"
Dim PasswordEncryptionAlgorithm As String = "RC4"
Dim PasswordEncryptionKeyLength As Integer = 56
Dim PasswordEncryptionFileProperties As Object = True
Me.SetPasswordEncryptionOptions(PasswordEncryptionProvider, PasswordEncryptionAlgorithm, PasswordEncryptionKeyLength, PasswordEncryptionFileProperties)
End If
End Sub
private void DocumentPasswordEncryptionFileProperties()
{
if (this.PasswordEncryptionFileProperties == false)
{
string PasswordEncryptionProvider = "Microsoft RSA SChannel Cryptographic Provider";
string PasswordEncryptionAlgorithm = "RC4";
int PasswordEncryptionKeyLength = 56;
object PasswordEncryptionFileProperties = true;
this.SetPasswordEncryptionOptions(PasswordEncryptionProvider,
PasswordEncryptionAlgorithm, PasswordEncryptionKeyLength,
ref PasswordEncryptionFileProperties);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。