LDialogWeb::LDialogWeb

Summary

Constructs and initializes the member variables of the LDialogWeb object.

Syntax

#include "ltwrappr.h"

LDialogWeb::LDialogWeb(pLBitmap)

LDialogWeb::LDialogWeb()

Parameters

LBitmapBase * pLBitmap

Pointer to the bitmap object referencing the bitmap object to assign to the specified object.

Returns

None.

Required DLLs and Libraries

See Also

Functions

Topics

Example

//This is an example for : LDialogWeb::LDialogWeb() 
 
L_INT LDialogWeb_LDialogWebExample_1( ) 
{ 
   LBase::LoadLibraries(LT_ALL_LEADLIB);//make sure all libraries are loaded 
 
   LDialogWeb MyDialogWeb;     //construct a dialogweb object 
 
   //.... do something here   ....    
 
   //Destructor is called upon returning from function 
 
   return SUCCESS; 
} 
 
//This is an example for : LDialogWeb::LDialogWeb (pBitmap)  
 
L_INT LDialogWeb_LDialogWebExample_2(LBitmapBase * BitmapObj)  
{ 
   LBase::LoadLibraries(LT_ALL_LEADLIB);//make sure all libraries are loaded 
 
   LDialogWeb MyDialogWeb (BitmapObj);     //construct a dialogweb object 
 
   //.... do something here   ....    
 
   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.