-- 作者:有点甜
-- 发布时间:2017/10/13 11:11:00
--
这些属性是foxtable自己定义,你可以用下面的代码显示所有的属性、方法
Dim wb As new WeUI Dim o = wb.AddTable("", "") For Each c As object In o.Gettype.getproperties output.show(c.name) Next
output.show("----------------------")
For Each c As object In o.Gettype.getmethods output.show(c.name) Next
|