Declaration
property DevicesInfo[idx: integer]: TIEWiaDeviceInfo;
Description
Returns info about the specified WIA device. 
// this fills 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;