Table of Contents

 
TrapInput
 

Purpose

Returns whether or not a text field is currently handling input

 

Protoype

bool CTextMngr::TrapInput ()
 

Description

Use this function to determine whether or not any text objects are receiving input via DoInput().

 
Use
CTextMngr text;
if (text.TrapInput())
    // a text object is receiving input
 

Prev: StartUp