ScanDocument StopScanning
Stops the active scanning process associated with this ScanDocument.
Overloads
public void StopScanning() |
Return value
void |
Example
Copy
DeviceStatusSnapshot status = scanDeviceManager.GetDeviceStatusSnapshot(GetselectedDeviceUniqueName());
if (status.ScanningStatus == DocumentScanningStatus.Scanning)
{
scanDocument.StopScanning();
}