NotebookSaveOptions1.DocumentSaveOptions
NotebookSaveOptions<TDocumentSaveOptions>.DocumentSaveOptions property
Obtiene o establece las opciones de guardado para todos los documentos secundarios de la libreta.
public TDocumentSaveOptions DocumentSaveOptions { get; }
Ejemplos
Muestra cómo guardar un cuaderno en formato pdf con opciones específicas.
// La ruta al directorio de documentos.
string dataDir = RunExamples.GetDataDir_NoteBook();
// Cargar un cuaderno de 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";
// Guardar el cuaderno
notebook.Save(dataDir, notebookSaveOptions);
Ver también
- class NotebookSaveOptions<TDocumentSaveOptions>
- espacio de nombres Aspose.Note.Saving
- asamblea Aspose.Note