Form Form1 {
X = 0;
Y = 0;
Width = 220;
Height = 267;
Number w = Width;
Number h = Height;
/* Biz/Designerのデザインビューでは実行しない
(エラーとなるため) */
if ( !$DESIGNTIME ) {
/* Formを画面描画サイズいっぱいに広げる */
Width &= //.Width;
Height &= //.Height;
}
/* 縦横の倍率を算出 */
HorizontalScale &= Width/w;
VerticalScale &= height/h > 0.1 ? height/h : 0.1;
/* フォントの倍率を算出 */
FontScale &= VerticalScale > HorizontalScale
? HorizontalScale : VerticalScale;
…
}
|