MCPcopy Create free account
hub / github.com/SLiCAP/SLiCAP_python / stepOn

Method stepOn

SLiCAP/SLiCAPinstruction.py:695–709  ·  view source on GitHub ↗

Enables parameter stepping. Does not change other settings for parameter stepping. :Example: >>> # Create an instance of the instruction object >>> my_instr = instruction() >>> # Enable parameter stepping >>> my_instruction.stepOn()

(self)

Source from the content-addressed store, hash-verified

693 return
694
695 def stepOn(self):
696 """
697 Enables parameter stepping.
698
699 Does not change other settings for parameter stepping.
700
701 :Example:
702
703 >>> # Create an instance of the instruction object
704 >>> my_instr = instruction()
705 >>> # Enable parameter stepping
706 >>> my_instruction.stepOn()
707 """
708 self.step = True
709 return
710
711 def stepOff(self):
712 """

Callers 1

_executeInstructionFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected