Table of Contents

 
RemoveButton
 

Purpose

Removes a specified button from the manager

 

Protoype

void CButtonMngr::RemoveButton (string str_button)
 

Parameters

button the ID of the button object to remove
 

Description

This function will remove a single button or hotspot from the manager. The function will also remove any icons or captions associated with the button.

 

Use

CButtonMngr button;
button.RemoveButton("my_button");
 

Prev: RemoveAll