Class NotebookPdfSaveOptions

Class NotebookPdfSaveOptions

이름 공간 : Aspose.Note.Saving 모임: Aspose.Note.dll (25.4.0)

노트북 페이지를 PDF로 업그레이드할 때 추가 옵션을 지정할 수 있습니다.

public class NotebookPdfSaveOptions : NotebookSaveOptions<pdfsaveoptions>
{
}

Inheritance

object NotebookSaveOptions NotebookSaveOptions NotebookPdfSaveOptions

상속 회원들

NotebookSaveOptions.GetDocumentSaveOptions() , NotebookSaveOptions.DocumentSaveOptions , NotebookSaveOptions.SaveFormat , NotebookSaveOptions.GetDocumentSaveOptions() , NotebookSaveOptions.SaveFormat , NotebookSaveOptions.Flatten , NotebookSaveOptions.DeferredSaving , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

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()
   {
   }

 한국어