This function sets an action event.
[Specification format]
debugger.ActionEvent.Set(ActionEventCondition)
|
[Argument(s)]
|
|
ActionEventCondition
|
Specify a condition of an action event.
See the ActionEventCondition class for creating an action event.
|
[Return value]
Set action event number (numerical value)
[Detailed description]
- | This function sets an action event according to the contents specified with ActionEventCondition. |
- | The specified action event is registered with the following name. |
Python Action Eventnumerical-value
|
[Example of use]
>>>ae = ActionEventCondition()
>>>ae.Address = "main"
>>>ae.Output = "chData = "
>>>ae.Expression = "chData"
>>>ae.ActionEventType = ActionEventType.Printf
>>>ae_number = debugger.ActionEvent.Set(ae)
1
>>>print ae_number
1
|