getBreakpointCondition

Syntax

<Path>.getBreakpointCondition(LineInBreakpointList:integer) → string

The method getBreakpointCondition returns the Condition which you would like to apply to the definition of the breakpoint of the EventController designated by <Path>. Before an event is released for execution, the Event Debugger checks the expression you entered.

Parameter

The parameter LineInBreakpointList of data type integer designates the line of the breakpoint in the breakpoint list.

This expression may be a global variable (Variable), an attribute or a method that returns a boolean value. When the condition returns true, the Event Debugger stops the simulation.

Return Value

The return value has the data type string.

Example

print EventController.getBreakpointCondition(2)

Related Topic

setBreakpointCondition