Class NotebookPdfSaveOptions
Class NotebookPdfSaveOptions
이름 공간 : Aspose.Note.Saving 모임: Aspose.Note.dll (25.4.0)
노트북 페이지를 PDF로 업그레이드할 때 추가 옵션을 지정할 수 있습니다.
public class NotebookPdfSaveOptions : NotebookSaveOptions<pdfsaveoptions>
Inheritance
object
←
NotebookSaveOptions
←
NotebookSaveOptions
상속 회원들
NotebookSaveOptions
Examples
지정된 옵션으로 PDF 형식으로 노트북을 저장하는 방법을 보여줍니다.
// 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()