NotebookSaveOptions1.DocumentSaveOptions
NotebookSaveOptions<TDocumentSaveOptions>.DocumentSaveOptions property
Ruft die Speicheroptionen für alle untergeordneten Dokumente des Notizbuchs ab oder legt sie fest.
public TDocumentSaveOptions DocumentSaveOptions { get; }
Beispiele
Zeigt, wie Notizbücher im PDF-Format mit den angegebenen Optionen gespeichert werden.
// Der Pfad zum Dokumentenverzeichnis.
string dataDir = RunExamples.GetDataDir_NoteBook();
// Ein OneNote-Notizbuch laden
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";
// Speichern Sie das Notizbuch
notebook.Save(dataDir, notebookSaveOptions);
Siehe auch
- class NotebookSaveOptions<TDocumentSaveOptions>
- namensraum Aspose.Note.Saving
- Montage Aspose.Note