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

또한보십시오