当前位置:首页>>网络编程>>Delphi教程>>正文

ReportBuilder设置打印页范围技巧

文章出处:网络转载 作者:未知 发布时间:2006-07-28 收藏到QQ书签

2005-6-23 fh@mail.trisunwyse.com
技术原理
     通过在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'


Google