ReportBuilder设置打印页范围技巧

技术原理
     通过在TppReport的BeforePrint事件中对TPrinterDevice的PageSetting属性和PageList属性进行赋值
为何要如此处理?
根据分析ReportBuilder源码,我们得到如下的调用顺序TppViewer -> TppProducer -> TppPrinterDevice -> TppPageRequest -> TppPublisher,其中 TppPageRequest 封装了打印页范围信息,而TppPrinterDevice 负责将指定的页发送到PrinterCanvas

实现步骤
  1、在调用单元声明一个类私有变量,用于保存打印页范围
  type
    ...
  private
    sPageRange: string;
    ...
  end;
  2、在调用单元声明一个类私有过程,用于处理TppReport.BeforePrint事件
procedure TfrmMain.ppReportBeforePrint(Sender: TObject);
begin
  if Sender is TppReport then
    if (Sender as TppReport).PrinterDevice <> nil then
    begin
      (Sender as TppReport).PrinterDevice.PageSetting := psPageList;
      ppTextToPageList(sPageRange, (Sender as TppReport).PrinterDevice.PageList, True);
    end;
end;
  3、在打印之前设置打印页范围,将TppReport.BeforePrint引导到自定义过程
  sPageRange := '3-5';
  (ppViewer1.Report as TppReport).BeforePrint := ppReportBeforePrint;
  (ppViewer1.Report as TppReport).ShowPrintDialog := False;
  ppViewer1.Print;

注意事项
  1,如果找不到TppReport类别,在接口引用单元添加ppReport单元
  2,如果找不到psPageList类别,在接口引用单元添加ppTypes单元
  3,如果找不到ppTextToPageList函数,在接口引用单元添加ppUtils单元
  4,sPageRange可以定义三种类型的页范围
     A:起止页:'3-10'//连接线分隔
     B:分隔页:'3,5,7'//逗号分隔
     C:单独页:'7'

2005-6-23 fenghan@163.com

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值