WriteProtection
内容
[
隐藏
]WriteProtection class
指定文档的写保护设置。
要了解更多信息,请访问保护或加密文档文档文章。
public class WriteProtection
特性
姓名 | 描述 |
---|---|
IsWriteProtected { get; } | 返回真的 当设置写保护密码时。 |
ReadOnlyRecommended { get; set; } | 指定文档作者是否建议以只读方式打开文档。 |
方法
姓名 | 描述 |
---|---|
SetPassword(string) | 设置文档的写保护密码。 |
ValidatePassword(string) | 返回真的 如果指定的密码与保护文档的写保护密码相同。 如果文档没有使用密码写保护,则返回错误的 . |
评论
写保护指定作者是否建议 以只读方式打开文档和/或需要密码才能修改文档。
写保护与文档保护不同。写保护在 Microsoft Word 的“另存为”对话框的选项中指定。
您不直接创建此类的实例。您可以通过以下方式访问文档保护设置 WriteProtection
财产。
例子
演示如何使用密码保护文档。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Writeln("Hello world! This document is protected.");
// 输入长度不超过15个字符的密码,然后验证文档的保护状态。
doc.WriteProtection.SetPassword("MyPassword");
doc.WriteProtection.ReadOnlyRecommended = true;
Assert.IsTrue(doc.WriteProtection.IsWriteProtected);
Assert.IsTrue(doc.WriteProtection.ValidatePassword("MyPassword"));
// 保护不会阻止以编程方式编辑文档,也不会加密内容。
doc.Save(ArtifactsDir + "Document.WriteProtection.docx");
doc = new Document(ArtifactsDir + "Document.WriteProtection.docx");
Assert.IsTrue(doc.WriteProtection.IsWriteProtected);
builder = new DocumentBuilder(doc);
builder.MoveToDocumentEnd();
builder.Writeln("Writing text in a protected document.");
Assert.AreEqual("Hello world! This document is protected." +
"\rWriting text in a protected document.", doc.GetText().Trim());