读一个变量与写一个变量的VBS代码很多,但读多个变量与写多个变量呢?哪位能指点一下,告诉我代码!
最佳答案
可以使用TagSet对象来同时读写多个变量,示例代码如下:
Dim group
Set group = HMIRuntime.Tags.CreateTagSet
'Add Tags to the Collection
group.Add "Motor1"
group.Add "Motor2"
'Set the Values of the Tags
group("Motor1").Value = 3
group("Motor2").Value = 9
'Write the Values to the DataManager
group.Write
详情请参考:
WinCC信息系统>>使用 WinCC >>VBS for Creating Procedures and Actions >>VBS Reference>>Objects and Lists>>TagSet Object (List)
提问者对于答案的评价:
说得好,谢谢
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc271724.html