OneSaveOptions.DocumentPassword

OneSaveOptions.DocumentPassword property

ドキュメント コンテンツを暗号化するためのパスワードを取得または設定します。

public string DocumentPassword { get; set; }

ドキュメントを暗号化して保存する方法を示します。

// ドキュメント ディレクトリへのパス。
string dataDir = RunExamples.GetDataDir_NoteBook();

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

関連項目