NotebookSaveOptions1.DocumentSaveOptions

NotebookSaveOptions<TDocumentSaveOptions>.DocumentSaveOptions property

Obtient ou définit les options d’enregistrement pour tous les documents enfants du bloc-notes.

public TDocumentSaveOptions DocumentSaveOptions { get; }

Exemples

Montre comment enregistrer un bloc-notes au format pdf avec les options spécifiées.

// Le chemin d'accès au répertoire des documents.
string dataDir = RunExamples.GetDataDir_NoteBook();

// Charger un bloc-notes 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";

// Enregistrer le bloc-notes
notebook.Save(dataDir, notebookSaveOptions);

Voir également