Enables or disables auto processing.
#include "ltwrappr.h"
L_BOOL LDialogBase::EnableAutoProcess(bAuto=TRUE)
Flag that indicates whether to enable auto processing. Possible values are:
Value | Meaning |
---|---|
TRUE | Enable auto processing. |
FALSE | Disable auto processing. |
The previous state of EnableAutoProcess.
If autoprocessing is enabled, the dialog will attempt to process the LBitmapBase object associated with it when you display a dialog that supports autoprocessing.
Before auto processing can be performed by a dialog other than FileOpen, the class object must have a valid LBitmapBase object associated with it. See LDialogBase::SetBitmap for more information.
L_INT LDialogBase_EnableAutoProcessExample(HWND hWnd)
{
LDialogBase MyDialog;
if (MyDialog.IsAutoProcessEnabled())
{
MessageBox(hWnd, TEXT("Auto Process Is Enabled"),TEXT("Example"),MB_OK|MB_ICONINFORMATION);
}
else
MyDialog.EnableAutoProcess();
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document