精华区 [关闭][返回]

当前位置:网易精华区>>讨论区精华>>编程开发>>● Delphi>>报表和打印>>报表>>Re:如何在运行时动态改变 QuickRpt 的 PaperSize ?

主题:Re:如何在运行时动态改变 QuickRpt 的 PaperSize ?
发信人: soaringbird(假行僧)
整理人: teleme(2001-02-25 22:48:51), 站内信件
【 在 xiiaaoo 的大作中提到:】
:如何在运行时动态改变 QuickRpt 的 PaperSize ? 
:
:... 
:   
:  MyRPT.Page.PaperSize := ?  
:
:......

MyRPT.Page.PaperSize := A3;

qrprntr.dcu 


 TQRPaperSize = (Default, Letter, LetterSmall, Tabloid, Ledger, Legal,
                Statement, Executive, A3, A4, A4Small, A5, B4, B5, Folio,
                Quarto, qr10X14, qr11X17, Note, Env9, Env10, Env11, Env12,
                Env14, CSheet, DSheet, ESheet, Custom)
property PaperSize : TQRPaperSize

Description

Use the PaperSize property to select a specific paper size for the report layout. To print on whatever paper is installed with the printer leave it to Default. To specify your own paper size set PaperSize to Custom and override the Length and Width properties. 


[关闭][返回]