Difference between revisions of "MC-Basic:SCOPE"
m (Miborich moved page Axystems:MC-Basic:SCOPE to MC-Basic:SCOPE: Global renaming of Axystems: namespace into (Main):) |
|
(No difference)
|
Revision as of 08:40, 22 May 2014
This query returns a current scope : PROGRAM of Function/Subroutine Name as a string.
Syntax
?Scope
Availability
from 0.4.0.22
Type
String
Scope
Task
Limitations
Read Only .
Examples
program
?Scope ‘ returns PROGRAM
call sub1
?func(1)
end program
sub sub1
?Scope ‘ returns SUB1 – the subroutine name
end sub
function func(byval i1 as long) as long
?Scope ‘ returns FUNC – the function name
func=i1
end function