SetStackFrame Method
Set the current stack frame to the specified level. This function changes the current stack frame of the program: the initial level is 0, positive values indicate higher levels. The location returned corresponds to the function call or the current statement if the level is 0. Changing the stack frame modifies the behaviour of
FindIdentifier(String) regarding local symbols: symbols returned are those of the specified stack level and not those of the interruption (level 0). This function can be called only from the debugger function.
Namespace: Mosel
Assembly: xprmdn (in xprmdn.dll) Version: 5.0.2.0

C#
public XPRMLocation SetStackFrame( int level )
Parameters
- level
-
Type:
SystemInt32
The stack frame level
Return Value
Type: XPRMLocationA location object corresponding to the current statement at the specified level or null if the level is not valid
