Declaration
property DevicesInfo[Index: Integer]: TIEWiaDeviceInfo;
Description
Returns info about the specified WIA device.
Example
// Fill a combobox with all installed devices
with ImageEnView.IO.WIAParams do
for i := 0 to DevicesInfoCount - 1 do
ComboBox1.Items.Add( DevicesInfo[i].Name );
end;