LoadOptions.DocumentPassword

LoadOptions.DocumentPassword property

Ruft ein Passwort für den verschlüsselten Dokumentinhalt ab oder legt es fest. Der Wert wird ignoriert, falls das Dokument nicht passwortgeschützt ist.

public string DocumentPassword { get; set; }

Beispiele

Zeigt, wie man ein verschlüsseltes Dokument erstellt.

// Der Pfad zum Dokumentenverzeichnis.
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();

LoadOptions loadOptions = new LoadOptions { DocumentPassword = "password" };
Document doc = new Document(dataDir + "Sample1.one", loadOptions);

Zeigt, wie man ein verschlüsseltes Notizbuch erstellt.

// Der Pfad zum Dokumentenverzeichnis.
string dataDir = RunExamples.GetDataDir_NoteBook();
var notebook = new Notebook(dataDir + "test.onetoc2", new NotebookLoadOptions() { DeferredLoading = true });

notebook.LoadChildDocument(dataDir + "Aspose.one");  
notebook.LoadChildDocument(dataDir + "Locked Pass1.one", new LoadOptions() { DocumentPassword = "pass" });
notebook.LoadChildDocument(dataDir + "Locked Pass2.one", new LoadOptions() { DocumentPassword = "pass2" });

Siehe auch