HiQPdf に 2 つのドキュメントを追加した後にページングを有効にする方法を知っている人はいますか?
ドキュメントを追加するための私のコードは次のとおりです。
HtmlToPdf htmlToPdfPotrate = htmlToPdf;
htmlToPdfPotrate.Document.PageOrientation = PdfPageOrientation.Landscape;
PdfDocument pdfDoc1 = htmlToPdfPotrate.ConvertHtmlToPdfDocument(NptHtml, null);
htmlToPdf.Document.PageOrientation = PageOrientation;
PdfDocument pdfDoc2 = htmlToPdf.ConvertHtmlToPdfDocument(ResponsiblePartyAndNptTypeChart, null);
pdfDocument.AddDocument(pdfDoc1);
pdfDocument.AddDocument(pdfDoc2);
ページングを有効にするには?