Class NotebookPdfSaveOptions
A név: Aspose.Note.Saving Összefoglaló: Aspose.Note.dll (25.4.0)
Lehetővé teszi a további lehetőségek meghatározását a notebook oldalak PDF-re történő renderelésénél.
public class NotebookPdfSaveOptions : NotebookSaveOptions<pdfsaveoptions>
Inheritance
object
←
NotebookSaveOptions
←
NotebookSaveOptions
Örökletes tagok
NotebookSaveOptions
Examples
Megmutatja, hogyan lehet menteni a notebook pdf formátumban a meghatározott opciókkal.
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_NoteBook();
// Load a OneNote Notebook
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";
// Save the Notebook
notebook.Save(dataDir, notebookSaveOptions);
Constructors
NotebookPdfSaveOptions()
public NotebookPdfSaveOptions()