LDialogBase::IsPreviewEnabled

Summary

Enables or disables the dialog preview.

Syntax

#include "ltwrappr.h"

L_BOOL LDialogBase::IsPreviewEnabled(L_VOID) const

Returns

Value Meaning
TRUE Showing the preview is enabled.
FALSE Showing the preview is disabled.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT LDialogBase_IsPreviewEnabledExample(HWND hWnd) 
{ 
   LDialogBase MyDialog; 
 
   if (MyDialog.IsPreviewEnabled()) 
   { 
      MessageBox(hWnd, TEXT("Show Preview Is Enabled"),TEXT("Example"),MB_OK|MB_ICONINFORMATION); 
   } 
   else 
      MyDialog.EnablePreview(); 
 
   return SUCCESS; 
}  
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Common Dialog C++ Class Library Help

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