如何查看元素在 VB 脚本中的属性?例子:
Dim list : Set list = CreateObject( "Scripting.Dictionary" )
' ... Fill List ...
WriteListElements list
...
Sub WriteListElements ( list )
Dim e, le
For Each e In list
Set le = list(e) ' what properties does le have?
le.name_of_user_defined_attribut ' I want to access a property but dont know the exact name
Next
End Sub
我使用带有 VBScript API 的工具。在该 API 中,我可以从该工具中读取(用户定义的)属性。但是在运行脚本时,我收到一个错误,告诉我它不知道该用户定义的属性的名称。但我在工具中使用它。现在我想知道上面的数组中有哪些属性可用,以查看用户定义的属性是否被具体命名。