This function configures a break point.
[Specification format]
debugger.Breakpoint.Set(BreakCondition)
|
[Argument(s)]
|
|
BreakCondition
|
Specify a break condition.
See the BreakCondition property for details about creating break conditions.
|
[Return value]
Set break event number (numerical value)
[Detailed description]
- | This function sets a break point according to the specifications in BreakCondition. |
- | break-name is "PythonBreakxxxx" (xxxx: 4-digit number). |
[Example of use]
>>>Condition = BreakCondition()
>>>Condition.Address = "main"
>>>breakNumber = debugger.Breakpoint.Set(Condition)
1
>>>print breakNumber
1
>>>debugger.Breakpoint.Information()
1 PythonBreak0001 Enable 0x000002dc
|