我正在使用Stimul报告创建报告页面。报告页面正确显示。我正在从数据库中读取stimulsoft网络报告的图像。
结果显示许多记录图像在一页上显示两个图像。但我想将每个图像显示在单独的页面上。
这是我的代码
foreach (StiPage page in report.Pages)
{
page.Orientation = StiPageOrientation.Portrait;
page.Margins.Top = 0;
page.Margins.Bottom = 0;
page.Margins.Left = 0;
page.Margins.Right = 0;
page.PaperSize = System.Drawing.Printing.PaperKind.A3;;
page.UnlimitedHeight = false;
page.CanBreak = false;
}
var image = report.GetComponentByName("Image1") as StiImage;
image.CanBreak = true;
答案 0 :(得分:0)
如果要为每个记录创建一页,则可以在每个页面中插入面板。
您可以创建一个页面模板并使用该模板并将您的列表传递给报告,而不是为每个记录创建一页。
对于每个记录(人)之后的中断页面,可以使用GroupHeaderBand和GroupFooterBand。
将页眉带条件属性设置为您的 Page Number字段,例如PageNumber; https://i.stack.imgur.com/tcnlT.png
在记录模板的末尾放置 GroupFooterBand ;
这两个带区将针对每个记录显示,并在每个GroupFooterBand之后显示分页符。