OneSaveOptions.DocumentPassword

OneSaveOptions.DocumentPassword property

Hämtar eller ställer in ett lösenord för att kryptera dokumentinnehållet.

public string DocumentPassword { get; set; }

Exempel

Visar hur man sparar dokument med kryptering.

// Sökvägen till dokumentkatalogen.
string dataDir = RunExamples.GetDataDir_NoteBook();

Document document = new Document();
document.Save(dataDir + "CreatingPasswordProtectedDoc_out.one", new OneSaveOptions() { DocumentPassword = "pass" });

Se även