LVectorDialog::IsAutoProcessEnabled

Summary

Determines whether auto processing is enabled or disabled.

Syntax

#include "ltwrappr.h"

L_BOOL LVectorDialog::IsAutoProcessEnabled(L_VOID)const

Returns

Value Meaning
TRUE Auto processing is enabled.
FALSE Auto processing is disabled.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT LVectorDialog__IsAutoProcessEnabledExample(HWND hWnd) 
{ 
   L_INT          nRet; 
   LVectorBase    Vector; 
   LVectorDialog  VectorDlg; 
 
   nRet = Vector.Load(MAKE_IMAGE_PATH(TEXT("random.dxf"))); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   VectorDlg.SetVector(&Vector); 
 
   if (VectorDlg.IsPreviewEnabled()) 
      MessageBox(hWnd, TEXT("IsPreviewEnabled() returns TRUE"), TEXT(""), MB_OK); 
   else 
      MessageBox(hWnd, TEXT("IsPreviewEnabled() returns FALSE"), TEXT(""), MB_OK); 
 
   if (VectorDlg.IsAutoProcessEnabled()) 
      MessageBox(hWnd, TEXT("IsAutoProcessEnabled() returns TRUE"), TEXT(""), MB_OK); 
   else 
      MessageBox(hWnd, TEXT("IsAutoProcessEnabled() returns FALSE"), TEXT(""), MB_OK); 
 
   return SUCCESS; 
} 
Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.