FlexView FlexView1 {
/* FlexItemオブジェクトで発生したClickedイベントを
親オブジェクトで捕捉 */
Function OnClicked( e ) {
/* Shiftキーの押下状態をチェック */
if( e.ShiftKey ) {
:
/* 選択行の背景色の設定 */
sRow = <選択開始行の設定>
eRow = <選択終了行の設定>
for( var i = sRow; i <= eRow; i++ ) {
row_obj = GetRow( i );
row_obj.FlexLabel1.BgColor = $FFCCCC;
row_obj.FlexLabel2.BgColor = $FFCCCC;
row_obj.FlexLabel3.BgColor = $FFCCCC;
}
} else if( e.CtrlKey ) {
:
} else {
:
}
}
}
|