1

我试图在使用此代码的某些元素后打破页面

 <p style=\"page-break-after:always\">

我正在使用 syncfusion pdf 报告生成器

因此,在内容中,我有几条记录要在 PDF 中显示。

现在我希望这些单独的记录显示在同一页面中,这意味着我不想显示相关内容出现在两个页面上。

如果当前页面没有足够的空间,则整个内容将转移到下一页,而不是分成两页。

4

1 回答 1

1

You can turn on or off detection of page breaks in HTML using the AutoDetectPageBreak property.

using (HtmlConverter html = new HtmlConverter())
{
 // Enable auto detect page break.
 html.AutoDetectPageBreak = true;

 // Convert here
}

If set to false, the converter will split the pages based on the size of PdfPage.

于 2012-06-27T11:25:30.773 回答