1070
Appendix A: System Routines — Text Editing
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
TE_reopenPlain
Declaration:
void
TE_reopenPlain
(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. The cursor selection highlight starts in the same place
as when the field was closed.
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 state information in
teRec
are used as they were set
when the edit record was closed by
TE_shrinkWrap
. The cursor position
or edit selection highlight remains unchanged from when the field was
closed.
Side Effects:
May cause heap compression. Turns cursor on if
bFocus
is TRUE.
Availability:
All versions of the TI
-
89 / TI
-
92 Plus.
TI
-
89 / TI
-
92 Plus
Plus Differences:
None
See Also: TE_reopen, TE_shrinkWrap
Example:
See
TE_shrinkWrap
.