PROCNAME()
Gets the name of the current function on the stack
Syntax
PROCNAME( <nLevel> ) --> <cProcName>
Arguments
<nLevel> is the function level required.
Returns
<cProcName> The name of the function that it is being executed.
Description
This function looks at the top of the stack and gets the current executed function if no arguments are passed. Otherwise it returns the name of the function or procedure at <nLevel>.
Examples
See Test
Tests
This test will show the functions and procedures in stack. before executing it. PROCEDURE Main() LOCAL n := 1 DO WHILE ! Empty( ProcName( n ) ) ? ProcName( n++ ) ENDDO RETURN
Compliance
Clipper
Files
Library is vm
Seealso
PROCLINE(), PROCFILE()