Table of Contents

 
SetTextDelay
 

Purpose

Sets a new time limit to display text

 

Protoype

void CTextMngr::SetTextDelay (string str_text_id, int i_new_delay)
 

Parameters

text_id the ID of the text object to set
new_delay the new delay in milliseconds
 

Description

This function is used to reset the delay timer that controls how long text is shown or hidden (or blink interval). For more information on showing and hiding text see ShowText().

 

Use

CTextMngr text;
text.SetTextDelay("my_text", 3000); 
 

Prev: SetText