Difference between revisions of "SCOPE"

From Recital Documentation Wiki
Jump to: navigation, search
 
Line 1: Line 1:
 
{{YLM todo}}
 
{{YLM todo}}
 +
Recital supports the following scope ranges
 +
 +
 +
{| class="wikitable"
 +
!Scope||Description
 +
|-
 +
|||Default scope of the operation, e.g. FOR is all, WHILE is rest.
 +
|-
 +
|Next||Process next n records.  Enter number of records to process, starting from current record.
 +
|-
 +
|All||Process all records.
 +
|-
 +
|Record||Process selected record.  Enter the record number of the record to process.
 +
|-
 +
|Rest||Process all remaining records, starting from current record.
 +
|-
 +
|First||Process first n records.  Enter number of records to process, starting from top of file.
 +
|-
 +
|}
 +
 +
 +
==Example==
 +
<code lang="recital">
 +
</code>
 +
 +
 +
[[Category:Documentation]]
 +
[[Category:Reference]]

Revision as of 11:26, 3 September 2010

Template:YLM todo Recital supports the following scope ranges


Scope Description
Default scope of the operation, e.g. FOR is all, WHILE is rest.
Next Process next n records. Enter number of records to process, starting from current record.
All Process all records.
Record Process selected record. Enter the record number of the record to process.
Rest Process all remaining records, starting from current record.
First Process first n records. Enter number of records to process, starting from top of file.


Example