使用 WIA 集合对象
集合是包含一个或多个 对象的 对象。 集合提供了一种对类似对象进行分组的有效方法。 Windows 映像获取 (WIA) 提供 DeviceInfo 和 Item 对象的集合。
使用集合枚举它们包含的对象。 例如,以下 VBScript 示例从 Devices 方法获取 DeviceInfo 对象的集合,然后使用 For...循环访问集合的每个循环:
<SCRIPT LANGUAGE="VBScript">
Dim objWia
Dim objDeviceInfoCollection
Dim objDeviceInfo
Set objWIA = CreateObject("Wia.Script")
Set objDeviceInfoCollection = objWia.Devices
For Each objDeviceInfo In objDeviceInfoCollection
' Do something with the DeviceInfo object.
Next
</SCRIPT>
注意
WIA 集合对象从 0 开始。