Appendix A: System Routines — Text Editing
1069
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
TE_reopen
Declaration:
void
TE_reopen
(TERecord *
teRec
, BOOL
bFocus
)
Category(ies):
Text Editing
Description:
Reopen text edit record closed by
TE_shrinkWrap
. Use this routine when
you have a text edit field which you want to reopen containing previous
input from the user. Unlike
TE_reopenPlain
, this routine changes the edit
selection to cover all the text.
Inputs:
teRec
— Pointer to text edit record previously closed with a call to
TE_shrinkWrap
.
bFocus
— TRUE means automatically set the focus to this field after
reopening the text edit record.
Outputs:
None
Assumptions:
Flags, edit buffer, and most state information in
teRec
are used as they
were set when the edit record was closed by
TE_shrinkWrap
. The entire
contents of the edit buffer are selected, i.e., the selection highlight covers
all the text.
Side Effects:
May cause heap compression. Turns cursor blink on if
bFocus
is TRUE.
Availability:
All versions of the TI
-
89 / TI
-
92 Plus.
TI
-
89 / TI
-
92 Plus
Differences:
None
See Also: TE_reopenPlain, TE_shrinkWrap
Example:
See
TE_shrinkWrap
.