|
<< Click to Display Table of Contents >> Navigation: 3. Script Language > Clipboard Commands > Store/Restore > Clipboard Commands |
MiniRobotLanguage (MRL)
CLB.Clear Text Store
Clear all internally stored Text-Register.
Intention
Currently the SPR can store up to 10 Clipboard-Texts directly from the clipboard into 10 memory banks.
These are numbered from 0 to 9.
This command can either delete one of these stored Texts if you give a number in P1 or if you give no number, so you omit P1, then all stored Texts are cleared and the memory is freed.
Please note that the memory banks that are used to store the images are not in concurrence to those that store texts.
So you can store a text on memory bank 0 and additionally store an image on memory bank 0. These are different banks.
Syntax
CLB.Clear Text Store[|P1]
Parameter Explanation
P1 - (optional) Variable containing a number or number from 0 to 9. This is the number of the memory bank that is to be cleared.
Example
'***********************************
' CLB.-Sample
'***********************************
CLB.Reset
CLB.Restore Text|2
CLB.Show Ansi
CLB.Restore Text|1
CLB.Show Unicode
CLB.Clear Text Store|2
CLB.Reset
' Will not work because no more Text there
CLB.Restore Text|2
CLB.Show ANSI
ENR.
Remarks
-
Limitations:
-
See also:
•