Class NotebookSaveOptionsTDocumentSaveOptions

NotebookSaveOptions<TDocumentSaveOptions> class

特定の format のノートブック保存オプションを表し、すべてのドキュメントの子ノードに共通の保存オプションを提供する抽象基本クラス.

public abstract class NotebookSaveOptions<TDocumentSaveOptions> : NotebookSaveOptions
    where TDocumentSaveOptions : SaveOptions
パラメータ説明
TDocumentSaveOptionsすべてのノートブックの子ドキュメントの保存オプション.

プロパティ

名前説明
DeferredSaving { get; set; }子ドキュメント を明示的に保存する必要があるかどうかを示す値を取得または設定します.
DocumentSaveOptions { get; }すべてのノートブックの子ドキュメントの保存オプションを取得または設定します.
Flatten { get; set; }ノートブックの子階層がフラット化されて保存されるかどうかを示す値を取得または設定します。
override SaveFormat { get; }ノートブックの保存形式を取得します。

メソッド

名前説明
override GetDocumentSaveOptions()すべてのノートブックの子ドキュメントの保存オプションを取得します.

指定したオプションを使用してノートブックを 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);

関連項目