要在Active Reports v7中创建一个中级分组的新页面,可以按照以下步骤进行操作。
完成上述步骤后,将在报表中创建一个中级分组,并在新页面中显示分组数据。
以下是一个示例代码,演示如何在Active Reports v7中创建中级分组的新页面:
// 创建报表对象
SectionReport report = new SectionReport();
report.LoadLayout("report.rpx"); // 加载报表模板
// 获取报表的主体部分(DetailSection)
DetailSection detailSection = report.Sections["DetailSection"] as DetailSection;
// 创建分组对象
GroupingSection groupSection = new GroupingSection();
groupSection.GroupBy = new[] { "Category" }; // 根据 "Category" 字段进行分组
// 创建新页面对象
PageSection newPage = new PageSection();
newPage.NewPage = true; // 在新页面上显示分组数据
// 将新页面添加到分组中
groupSection.Sections.Add(newPage);
// 将分组添加到报表的主体部分之前
int index = detailSection.Parent.Sections.IndexOf(detailSection);
detailSection.Parent.Sections.Insert(index, groupSection);
// 更新报表布局
report.Document.Refresh();
以上示例代码假设已经创建了一个report.rpx的报表模板文件,并且模板中包含一个名为"DetailSection"的主体部分。你可以根据自己的需求进行适当的调整和修改。