Difference between revisions of "READINSERT()"

From Recital Documentation Wiki
Jump to: navigation, search
 
Line 1: Line 1:
=READINSERT()=
 
 
 
 
==Class==
 
==Class==
 
Screen Forms
 
Screen Forms
Line 15: Line 12:
  
 
==See Also==
 
==See Also==
[[READEXIT()]], [[KEYBOARD]], [[REPLAY]], [[SET READINSERT]]
+
[[INSMODE()]], [[Function Keys]], [[KEYBOARD]], [[READEXIT()]], [[REPLAY]], [[SET PCKEYS]], [[SET READINSERT]]
  
  
Line 37: Line 34:
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 +
[[Category:Keyboard Events]]
 +
[[Category Keyboard Events Functions]]

Revision as of 11:34, 9 June 2009

Class

Screen Forms


Purpose

Function to toggle insert mode on or off during a READ


Syntax

READINSERT([<expL>])


See Also

INSMODE(), Function Keys, KEYBOARD, READEXIT(), REPLAY, SET PCKEYS, SET READINSERT


Description

The READINSERT() function is used to toggle insert mode on or off prior to activating a form. Insert mode is enabled if the result of the logical expression <expL> is .T. and disabled if the result is .F.. The default for READINSERT() is .F., in which case the user must press the [INSERT] key to toggle insert mode on. When READINSERT() is .T., insert mode is automatically on for activated forms. The READINSERT() function will return .T. if READINSERT was ON and .F. if READINSERT was OFF. The command PCKEYS must be set ON when using the function.


Example

? readinsert()
.F.
// Toggle insert mode on
readinsert(.T.)
? readinsert()
.T.


Products

Recital Mirage Server, Recital Terminal DeveloperCategory Keyboard Events Functions