Table of Contents

 
ShowCursor
 

Purpose

Shows or hides the current cursor

 

Protoype

void CCursorMngr::ShowCursor (bool b_show)
 

Parameters

show whether to show (TRUE) or hide (FALSE) the current cursor
 

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); 
 

Prev: SetDefaultCursor