[サンプルコード]
Form Form1 {
X = 0;
Y = 0;
Width = 250;
Height = 150;
EditBox EditBox1 {
X = 10;
Y = 10;
Width = 100;
Height = 60;
}
Button Button1 {
X = 10;
Y = 50;
Width = 100;
Height = 30;
Title = "ボタン(&S)";
Function OnTouch( e ) {
Form1.EditBox1.Value = "Hello\nWorld";
Form1.EditBox1.AppendCR();
}
}
}
|