Difference between revisions of "MC-Basic:PROGRAMLINE"
(Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= ?PROGRAMLINE |AVAILABILITY= Version 4.0.15 and above. |DESCRIPTION= This query returns a Long value, indicating the current line number withi…') |
m (1 revision) |
(No difference)
|
Revision as of 16:10, 13 December 2010
This query returns a Long value, indicating the current line number within the querying task. ProgramLine can only be used for the querying task, and cannot refer to another task.
Syntax
?PROGRAMLINE
Availability
Version 4.0.15 and above.
Type
Long
Range
1 to MaxLong.
Default
1 in Terminal.
Scope
Configuration, Task or Terminal
Limitations
Read Only. Task must be loaded in memory.
Examples
From Terminal:
-->?ProgramLine ‘ Should return 1
Or within Task1.prg :
Program
? ProgramLine
End Program