Hi,
I implemented a dialog in my C# project using IEvolution 4.0.1.
My dialog should enable WIA and TWAIN scanning without calling another system dialog. The offered Class "TWainParams" contains many properties for TWAIN based scanning. Exist such a class for WIA? If not where can I set WIA parameter (especially the usage of a feeder)?
Thanks
// ...
private IEViewer Viewer { get; set; }
public void ScanTWain(bool sysDialog)
{
// set properties in Viewer.Image.TWainParams
Viewer.Image.AcquireFromTWain();
Viewer.Image.TWainParams.FreeResources();
}
public void ScanWIA(bool sysDialog)
{
// TODO: set properties
Viewer.Image.AcquireFromWIA();
}
// ...