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

関連項目