API version 1

- ‐

[]

特定列を取得するオペレータです。

複数列を含むSpreadColumnオブジェクトから特定列を指し示すSpreadColumnオブジェクトを取得することができます。

呼出形式一覧

呼出形式

説明

operators_method.[].signature.? (?)

列に配列要素でアクセスします。

引数一覧

引数

説明

operators_method.[].param_list.param_type.idx

添え字を0以上の整数値で指定します。

例外

なし



使用例 CRSダウンロード

Form SpreadColumn_length {
   x = 0;
   y = 0;
   width = 800;
   height = 600;

   Spread spread1 {
           x = 8;
           y = 8;
           width = 640;
           height = 440;
           maxColumns = 20;
           maxRows = 20;
   }

   Button button1 {
           x = 664;
           y = 32;
           width = 112;
           height = 32;
           title = "実行";
           function onTouch(e) {
                   var s = ^.spread1.columns("B:F");

                   #sに含まれる列数を返します
                   print("含まれる列数は", s.length , "です");

                   for ( var i = 0; i< s.length; i++ ) {
                           #オブジェクトsのi番目の単体列のSpreadColumnオブジェクトを取得し、列幅を変更します
                           s[i].width = (i+1)*20;

                           #オブジェクトsのi番目の単体列のSpreadColumnオブジェクトを取得し、タイトルを変更します
                           s[i].title = i;
                   }
           }
   }
}