Indicates whether to display the TWAIN user interface with or without the Scan button, if supported.
#include "lttwn.h"
L_LTTWN_API L_INT L_TwainEnableShowUserInterfaceOnly (hSession, bEnable)
Handle to an existing TWAIN session. This handle is obtained by calling either the L_TwainInitSession or L_TwainInitSession2 function.
Flag that indicates whether to display the user interface. Possible values are:
Value | Meaning |
---|---|
TRUE | Display the TWAIN user interface without the scan button, if supported. |
FALSE | Display the normal TWAIN driver user interface with the scan button. (Default) |
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
! = SUCCESS | An error occurred. Refer to Return Codes. |
To display the TWAIN driver user interface without the scan button, call this function with the bEnable parameter set to true. Then call L_TwainTemplateDlg to display the template dialog.
If you call this function with the bEnable parameter set to false, the template dialog will display the normal TWAIN user interface, with the scan button.
L_INT TwainEnableShowUserInterfaceOnlyExample(L_TCHAR* pszFileName, HTWAINSESSION hSession)
{
L_INT nRet;
nRet = L_TwainEnableShowUserInterfaceOnly(hSession, TRUE);
if(nRet != SUCCESS)
return nRet;
nRet = L_TwainTemplateDlg(hSession, pszFileName, NULL, NULL, NULL);
if(nRet != SUCCESS)
return nRet;
return SUCCESS;
}