| AccusoftISISXpress7 ActiveX DLL : ISX_SetupOptions Enumeration |
Option values for the Setup Method to modify what is displayed by the predefined scanner settings dialog.
| Member | Value | Description |
|---|---|---|
| ISX_Area | 2 | Displays a scanner settings dialog that shows the Area button. When the Area button is clicked, an Area dialog will be displayed. |
| ISX_AreaPreview | 8 | Displays a scanner settings dialog that shows the Area button. When the Area button is clicked, an Area dialog, containing a preview window, will be displayed. |
| ISX_Binary | 1 | Displays a scanner settings dialog that only allows binary modes. This prevents the user from choosing grayscale or color modes. |
| ISX_Normal | 0 | Displays the normal scanner settings dialog. |
| ISX_Return | 4 | Displays a scanner settings dialog that will return SCANERR_CANCEL if the user clicks the Cancel button. If this flag is not set, then the settings dialog will always return with no error. |
The predefined scanner settings dialog allows the user to change driver specific scanner settings.
ISX_SetupOptions is a flag enumeration that can be treated as a bit field or a set of flags. The following example shows how this enumeration can be used:
Setup (hWnd, ISX_SetupOptions.ISX_Binary | ISX_SetupOptions.ISX_Return);