<構造>
Form1
└ Form2[2]
└ TextBox1 |
<サンプルソース>
※ポイント抜粋
Form Form1 {
・・・・・
/* Form配列 */
Form Form2[2] {
X = 23;
Y = 54;
Width = 231;
Height = 125;
TextBox TextBox1 {
X = 12;
Y = 39;
Width = 200;
Height = 50;
Value = "TextBox1";
Function OnGetFocus( e ){
Form1.A(this);
}
}
}
/* IsArray判定 */
Function A(obj){
/* ★ポイント★ */
if( obj.^.IsArray) {
/* 処理 */
}else{
/* 処理 */
}
}
} |