Difference between revisions of "SET MEMOFORMAT"

From Recital Documentation Wiki
Jump to: navigation, search
 
Line 15: Line 15:
  
 
==See Also==
 
==See Also==
SET WP TO, SET MEMOWINDOW, SET MEMOWIDTH, MEMOEDIT(), MEMOSAY(), MEMLINES(), MEMOWRITE(), MLCOUNT(), MLINE(), TEXTEDIT(), MEMOLINE(), MEMOREAD(), MEMOTRAN(), HARDCR(), SET PRERECORD, SET MEMOCLEAR, SET MEMOWINDOW, SET MEMOWIDTH
+
[[SET MEMOCLEAR]], [[SET MEMOWIDTH]], [[SET MEMOWINDOW]], [[SET PRERECORD]], [[SET WP]], [[HARDCR()]], [[MEMLINES()]], [[MEMOEDIT()]], [[MEMOLINE()]], [[MEMOREAD()]], [[MEMOSAY()]], [[MEMOTRAN()]], [[MEMOWRITE()]], [[MLCOUNT()]], [[MLINE()]], [[TEXTEDIT()]],
  
  
Line 35: Line 35:
 
==Products==
 
==Products==
 
Recital Terminal Developer
 
Recital Terminal Developer
 +
[[Category:Documentation]]
 +
[[Category:Commands]]
 +
[[Category:Set_Commands|MEMOFORMAT]]

Revision as of 17:23, 11 March 2009

SET MEMOFORMAT

Class

Memos


Purpose

Enable or disable memo formatting during and after editing operations.


Syntax

SET MEMOFORMAT ON | OFF | (<expL>)


See Also

SET MEMOCLEAR, SET MEMOWIDTH, SET MEMOWINDOW, SET PRERECORD, SET WP, HARDCR(), MEMLINES(), MEMOEDIT(), MEMOLINE(), MEMOREAD(), MEMOSAY(), MEMOTRAN(), MEMOWRITE(), MLCOUNT(), MLINE(), TEXTEDIT(),


Description

If MEMOFORMAT is ON, the memo field is automatically formatted when it is saved. All the lines are word-wrapped into the field, and carriage returns are removed. Hard carriage returns may be retained by toggling Insert Mode ON before pressing the [RETURN] or [ENTER] key. When MEMOFORMAT is set OFF, this allows preformatted text to be held in the memo without it being reformatted as it is used. All spaces and carriage returns are stored in the memo field.

WARNING: Once a memo is saved with MEMOFORMAT set ON, all the formatting characters are removed. This command should always be left ON or OFF, not toggled. The default for SET MEMOFORMAT is OFF


Example

procedure edit_memo
set memoformat off
memoedit(comp_hist,5,10,20,70,(getuid()>100),;
"Company History")
return


Products

Recital Terminal Developer