[サンプルコード]
Form Form1{
X = 0;
Y = 0;
Width = 358;
Height = 241;
Label Label1 {
X = 51;
Y = 38;
Width = 253;
Height = 40;
Value = "初期表示 :「0」を非表示\n";
Value +="「0」入力時 :フォーカスアウトで「0」を非表示";
BgColor = $FFFFCC;
VerticalAlign = $STD;
HorizontalAlign = $LEFT;
}
NumberEdit NumberEdit1 {
X = 80;
Y = 100;
Width = 195;
Height = 21;
/*formatプロパティを“空のデータは表示しない(N)”に設定する*/
Format = "90D99N";
/*isNullを手動でtrueに変更する*/
this.isNull = true;
VerticalAlign = $STD;
/*入力された値が「0」だった場合isNullプロパティをtrueに変更する*/
Function OnTouch( e ) {
if(this.Value == 0){
this.isNull = true;
}
}
}
Button Button1 {
X = 106;
Y = 144;
Width = 142;
Height = 29;
Title = "フォーカス移動用";
VerticalAlign = $STD;
}
}
|