make new data column at the end of the data columns of ds ツ with properties {name:"num"} make new data column at the end of the data columns of ds ツ with properties {name:"place"}
set newRow to make new data row at the end of data rows of ds set contents of data cell 1 of newRow to "25" set contents of data cell 2 of newRow to "浦和" set newRow to make new data row at the end of data rows of ds set contents of data cell "num" of newRow to "45" set contents of data cell "place" of newRow to "鳩ヶ谷"
data cellについては、番号で指定してもいいが、data columnのtitleプロパティの値を利用して、どのセルかと言うことを指定することもできる。上記のプログラムは2つのバリエーションを示しているので、プログラムと、テーブルでのデータ設定結果を見比べてもらいたい。 ところが、ここで、次のようなプログラムは動かないものかと若干は期待したけど、これはだめであった。やはり、data rowがさらに複数のdata cellというオブジェクトにつながっているため、直接書き込むことはできないのである。
make new data row at the end of data rows of ds ツ with properties {num:"34", place:"所沢"}