XSIApplication.Devices

Description

Returns a collection of Device driver objects currently installed in the device manager as a DeviceCollection. For a device driver to be in this list, it needs to be added using the DeviceCollection.AddDevice method.

Examples

VBScript Example

Application.Devices.enable = true
Application.Devices.AddDevice( "PC1600" )
set oDevices = Application.Devices
for i=0 to oDevices.Count-1
Application.LogMessage oDevices.Item( i )
next