ReportBuilder设置打印页范围技巧

王朝delphi·作者佚名  2006-01-09
宽屏版  字体: |||超大  

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'

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
© 2005- 王朝网络 版权所有