L_ISISSetScanOptions

#include "l_bitmap.h"
#include "ltisi.h"

L_INT EXT_FUNCTION L_ISISSetScanOptions(hWnd)

HWND hWnd;

/* window handle */

Brings up the scan options dialog box. This function is available in the Document/Medical Toolkits.

Parameter

Description

hWnd

Handle of the parent window.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

You must call L_ISISLoadDriver before you can use this function to set scanner options.

Required DLLs and Libraries

LTISI

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Windows 95 / 98 / Me, Windows 2000 / XP.

See Also

Functions:

L_ISISAcquire, L_ISISAcquireMulti, L_ISISGetTagLong, L_ISISGetTagShort, L_IsISISAvailable, L_ISISLoadDriver, L_ISISSelect, L_ISISSetTagLong, L_ISISSetTagShort, L_ISISUnloadDriver

Topics:

Raster Image Functions: Scanning Images using ISIS

 

Using ISIS to Scan Images

Example

For complete sample code, refer to DEMO example.

HWND hWnd;
L_ISISLoadDriver
(NULL);
L_ISISSetScanOptions
(hWnd); /* set scan options */
/* do a scan here */
L_ISISUnloadDriver
();