Object

Foreach.Object(ObjectFunction)

函数功能

对所有Object对象执行指定函数(ObjectFunction)。

参数说明

返回值

执行成功的次数。 -1为参数错误。

ObjectFunction(ObjectIndex)

参数说明

返回值

参考实例

-- 定义一个ObjectFunction
function MyForeachObject(ObjectIndex)
  print("MyForeachObject: "..ObjectIndex.." called")
  return 0
end

Foreach.Object(MyForeachObject); -- 对所有Object对象批量执行ObjectFunction