Vcl.Forms.TCustomForm.PrintScale
Delphi
property PrintScale: TPrintScale read FPrintScale write FPrintScale stored IsForm
C++
__property TPrintScale PrintScale = {read=FPrintScale, write=FPrintScale, stored=IsForm, default=1};
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
property | protected | Vcl.Forms.pas Vcl.Forms.hpp |
Vcl.Forms | TCustomForm |
説明
フォームの印刷時の比率を示します。
PrintScale を使用すると,フォームの印刷時の比率を取得または設定できます。PrintScale は,次のいずれかの TPrintScale の値をとることができます。
値 | 意味 |
---|---|
poNone |
画面に表示されたフォームをプリンタの解像度で印刷する。 |
poProportional |
フォームは画面上のサイズと同じサイズになるように印刷される(WYSIWYG)。フォームイメージは,印刷されるイメージが画面上に見えるサイズと同じになるように拡大/縮小される。 |
poPrintToFit |
フォームは同じ画面比率を使用するが,印刷ページにちょうど収まるサイズで印刷される。 |