请问VB6的多参数属性如何赋值?如下例:
类模块中已定义如下属性
public property let things(byval x integer, byval y as integer,byval thing as variant)
'代码省
end propertypublic property get things(byval x as integer,byval y as integer) as variant
'代码省
end property在使用这个属性时是应该怎么对于赋值?