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 형식으로 노트북을 저장하는 방법을 보여줍니다.
string dataDir = RunExamples.GetDataDir_NoteBook();
var notebook = new Notebook(dataDir + "Notizbuch Öffnen.onetoc2");
var notebookSaveOptions = new NotebookPdfSaveOptions();
var documentSaveOptions = notebookSaveOptions.DocumentSaveOptions;
documentSaveOptions.PageSplittingAlgorithm = new KeepSolidObjectsAlgorithm();
dataDir += "ConvertToPDF_out.pdf";
notebook.Save(dataDir, notebookSaveOptions);
Constructors
노트북PdfSaveOptions()
public NotebookPdfSaveOptions()
{
}