Table of Contents

 
RemoveText
 

Purpose

Removes a single text object from the manager

 

Protoype

void CTextMngr::RemoveText (string str_text_id)
 

Parameters

text_id the ID of the text object to remove
 

Description

This function removes only a single text object from the text manager. Like RemoveAllTexts(), this function removes any timers and hotspots associated with the text object to immediately free system resources.

 

Use

CTextMngr text;
text.RemoveText("my_text");
 

Prev: RemoveFont