Contains names of all acquisition sources.

Items are formatted as follows:

Device Name||Index of Location||API||Device Type

E.g. My Cool Scanner||3||TWN||SCN

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public IEStringList Sources { get; }
Public ReadOnly Property Sources As IEStringList
	Get
public:
property IEStringList^ Sources {
	IEStringList^ get ();
}

Examples

CopyC#
for (int i = 0; i < ieMulti1.ImageList.AcquireParams.Sources.Count; i++)
  listBox1.Items.Add(ieMulti1.ImageList.AcquireParams.Sources[i]);

See Also