I'm trying to build an application implementing DotTwain and using pre-set dimensions.
If I set
this.device.HideInterface = false;
then the custom setting which I've pre-set is already selected. All I need to do is click Scan on the device's interface and the image is scanned as I'd expect.
If I set
this.device.HideInterface = true;
then the custom settings are ignored and the device scans with different settings.
So my question is how do I configure my DotTwain application to use these custom scan settings without showing the device interface?