Class NotebookPdfSaveOptions
Contenido
[
Ocultar
]NotebookPdfSaveOptions class
Permite especificar opciones adicionales al renderizar páginas de notebook a PDF.
public class NotebookPdfSaveOptions : NotebookSaveOptions<PdfSaveOptions>
Constructores
Nombre | Descripción |
---|---|
NotebookPdfSaveOptions() | Constructor predeterminado |
Propiedades
Nombre | Descripción |
---|---|
DeferredSaving { get; set; } | Obtiene o establece un valor que indica si los documentos secundarios deben guardarse explícitamente. |
DocumentSaveOptions { get; } | |
Flatten { get; set; } | Obtiene o establece un valor que indica si la jerarquía secundaria del cuaderno se guarda plana. |
override SaveFormat { get; } |
Métodos
Nombre | Descripción |
---|---|
override GetDocumentSaveOptions() |
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>
- class PdfSaveOptions
- espacio de nombres Aspose.Note.Saving
- asamblea Aspose.Note