用紙の幅です。初期値はFormatプロパティによって自動的に決まります。
|
Format プロパティ |
Width×Height (dot単位) |
用紙サイズmm (横×縦) |
|
A4V |
793×1122 |
2100×2970 |
|
A4H |
1122×793 |
2970×2100 |
|
A5V |
599×793 |
1480×2100 |
|
A5H |
793×599 |
2100×1480 |
|
A3V |
1122×1587 |
2970×4200 |
|
A3H |
1587×1122 |
4200×2970 |
|
B5V |
687×971 |
1820×2570 |
|
B5H |
971×687 |
2570×1820 |
|
B4V |
971×1375 |
2570×3640 |
|
B4H |
1375×971 |
3640×2570 |
Width、Heightプロパティに値を設定すると、その値を用紙サイズに合わせるように拡大・縮小します。
Doc Doc1 { Format = "A4H"; Form Form1 { Width = 400; Height = 400; Label Label1 { Width = 80; Height = 30; Border = $TRUE; } }}
Doc1のプレビュー

Doc Doc2 { Format = "A4H"; Form Form1 { Width = 400; Height = 400; Label Label1 { Width = 80; Height = 30; Border = $TRUE; } } if (!$DESIGNTIME) { Width = Form1.Width; Height = Form1.Height; }}
Doc2のプレビュー
