NotebookSaveOptions1.DocumentSaveOptions
NotebookSaveOptions<TDocumentSaveOptions>.DocumentSaveOptions property
获取或设置所有笔记本子文档的保存选项。
public TDocumentSaveOptions DocumentSaveOptions { get; }
例子
显示如何使用指定选项将笔记本保存为 pdf 格式。
// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_NoteBook();
// 加载一个 OneNote 笔记本
var notebook = new Notebook(dataDir + "Notizbuch �ffnen.onetoc2");
var notebookSaveOptions = new NotebookPdfSaveOptions();
var documentSaveOptions = notebookSaveOptions.DocumentSaveOptions;
documentSaveOptions.PageSplittingAlgorithm = new KeepSolidObjectsAlgorithm();
dataDir = dataDir + "ConvertToPDF_out.pdf";
// 保存笔记本
notebook.Save(dataDir, notebookSaveOptions);