| Table of Contents | ||
|
|
||
| ShowCursor | ||
|
Purpose Shows or hides the current cursor |
||
|
Protoype void CCursorMngr::ShowCursor (bool b_show) |
||
|
Parameters
|
||
|
Description This function controls the visibility of the current cursor object. To hide the cursor pass in FALSE for b_show. To make it visible again pass in TRUE for b_show. |
||
|
Use CCursorMngr cursor; // hide the cursor cursor.ShowCursor(false); // show the cursor cursor.ShowCursor(true); |
||
|
|
||
|