Sdílet prostřednictvím


DocumentBase.PasswordEncryptionFileProperties – vlastnost

Získá hodnotu označující, zda systém Microsoft Office Word šifruje heslove vlastnostech souboru-chráněné dokumenty.

Obor názvů:  Microsoft.Office.Tools.Word
Sestavení:  Microsoft.Office.Tools.Word.v4.0.Utilities (v Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Syntaxe

'Deklarace
Public ReadOnly Property PasswordEncryptionFileProperties As Boolean
    Get
public bool PasswordEncryptionFileProperties { get; }

Hodnota vlastnosti

Typ: System.Boolean
true Pokud systém Microsoft Office Word šifruje heslove vlastnostech souboru-chráněné dokumenty; jinak false.

Poznámky

Použití SetPasswordEncryptionOptions Metoda k určení, zda slovo šifruje vlastnosti souboru heslem chráněné dokumenty.

Příklady

Následující příklad kódu nastaví heslo možnosti šifrování pokud vlastnosti souboru nejsou šifrované heslo-chráněné dokumenty. Chcete-li použít tento příklad spustit z ThisDocument třídy v projektu úrovni dokumentu.

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);
    }
}

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

DocumentBase Třída

Microsoft.Office.Tools.Word – obor názvů