Class LoadOptions
内容
[
隐藏
]LoadOptions class
用于加载文档的选项。
public class LoadOptions
构造函数
姓名 | 描述 |
---|---|
LoadOptions() | 默认构造函数。 |
特性
姓名 | 描述 |
---|---|
DocumentPassword { get; set; } | 获取或设置加密文档内容的密码。如果文档没有密码保护,值将被忽略。 |
LoadHistory { get; set; } | 获取或设置一个值,指示文档加载程序是否应忽略历史记录。 使用此选项可减少内存和 CPU 使用率。 默认值为真的 . |
例子
显示如何加密文档。
// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
LoadOptions loadOptions = new LoadOptions { DocumentPassword = "password" };
Document doc = new Document(dataDir + "Sample1.one", loadOptions);
展示如何加密笔记本。
// 文档目录的路径。
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" });
显示如何获取页面的历史记录。
// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_Pages();
// 加载 OneNote 文档
Document document = new Document(dataDir + "Aspose.one", new LoadOptions { LoadHistory = true });
// 获取第一页
Page firstPage = document.FirstChild;
foreach (Page pageRevision in document.GetPageHistory(firstPage))
{
/*Use pageRevision like a regular page.*/
Console.WriteLine("LastModifiedTime: {0}", pageRevision.LastModifiedTime);
Console.WriteLine("CreationTime: {0}", pageRevision.CreationTime);
Console.WriteLine("Title: {0}", pageRevision.Title);
Console.WriteLine("Level: {0}", pageRevision.Level);
Console.WriteLine("Author: {0}", pageRevision.Author);
Console.WriteLine();
}
也可以看看
- 命名空间 Aspose.Note
- 部件 Aspose.Note