int ObjectsTotal(int type=EMPTY)
Returns total amount of objects of the specified type in the chart.
チャートで指定した型のオブジェクトの合計数を返します。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 2 3 4 5 6 7 | int obj_total=ObjectsTotal(); string name; for(int i=0;i<obj_total;i++) { name=ObjectName(i); Print(i,"Object name for object #",i," is " + name); } |