[サンプルコード]
Form Form1 {
X = 0;
Y = 0;
Width = 400;
Height = 300;
Button Button1 {
X = 10;
Y = 10;
Width = 200;
Height = 25;
Title = "SetFontFamilyの確認";
FontFace = $FIXED;
FontKind = $FONT2;
}
if ( !$DESIGNTIME ) {
/* $FONT2にフォントを設定 */
//.SetFontFamily($FONT2, "XXXP丸ゴシック", "XXX丸ゴシック");
}
}
|