NotebookSaveOptions1.DocumentSaveOptions

NotebookSaveOptions<TDocumentSaveOptions>.DocumentSaveOptions property

Ottiene o imposta le opzioni di salvataggio per tutti i documenti secondari del notebook.

public TDocumentSaveOptions DocumentSaveOptions { get; }

Esempi

Mostra come salvare il notebook in formato pdf con le opzioni specificate.

// Il percorso della directory dei documenti.
string dataDir = RunExamples.GetDataDir_NoteBook();

// Carica un blocco appunti di 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";

// Salva il taccuino
notebook.Save(dataDir, notebookSaveOptions);

Guarda anche