Copyright © 2003-2005 MultiMedia Soft 
Return to index  
 
EnableButtonCache method 
 
Remarks 
Enables/disables the button caching system. 
Details about the buttons caching process can be found inside How to speed up buttons rendering section. 
 
Syntax 
 
[Visual Basic] 
Public Sub EnableButtonCache(bEnable as Bool) 
 
[C#] 
public void EnableButtonCache(bool bEnable); 
 
[C++] 
public: void EnableButtonCache(bool bEnable); 
 
 
 
Parameter
Description
 
 
bEnable
Boolean flag that determines if the button caching system is enabled. Supported values are the following:  
Value
Meaning
False
The button caching system is disabled and the cache's actual content is cleared
True (default)
The button caching system is enabled
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2003-2005 MultiMedia Soft 
Return to index