FlexView FlexView1 {
X = 11;
Y = 6;
Width = 212;
Height = 116;
FlexRecord FlexRecord1 {
FlexLabel FlexLabel1 {
Width = 70;
Title = "区分";
}
FlexLabel FlexLabel2 {
Width = 70;
Title = "商品";
}
FlexLabel FlexLabel3 {
Width = 70;
Title = "価格";
}
}
}
Button Button1 {
X = 12;
Y = 132;
Width = 117;
Height = 45;
Function OnTouch( e ) {
/* 選択した行の1列目のデータを取得 */
var col_data =
Form1.FlexView1.GetRow(Form1.FlexView1.RowPosition)
.GetColumn(0).Value; ・・・★(実際は1行で記載)
/* 選択した行の1列目のデータを取得 */
MessageBox(col_data);
}
}
|