函数名: | 获取对象属性值函数 |
调 用: | gma.show.property.get(number:handle,number:index/string:property_name) |
参 数: | 第一个参数为数字:对象的handle 第二个参数为数字:索引号(从0开始) 或者为字符串:属性的名称,可以提前用 gma.show.property.name()获取 |
返回值: | 字符串:返回给定的对象所对应索引号(ID)或属性名称的属性值 |
结 果: | 无 |
备 注: | 获取对象handle可以使用 gma.show.getobj.handle() |
例子:
- 获取序列1的名称
function Start() local h = gma.show.getobj.handle("sequence 1") local k = gma.show.property.get(h,"name") gma.echo(k) end return Start;
或者
function Start() local h = gma.show.getobj.handle("sequence 1") local k = gma.show.property.get(h,1) gma.echo(k) end return Start;