build.Link.SetDebugMonitorArea
|
This property is for setting or referring to whether or not a debug monitoring area is set. It is a link option for the active project. [CC-RL]
[Specification format]
build.Link.SetDebugMonitorArea = debugMonitorArea
|
[Setting(s)]
|
|
debugMonitorArea
|
Select whether or not a debug monitoring area is set.
The specifiable types are listed below.
|
|
|
DebugMonitorArea.DefaultAddressRange
|
Specify a debug monitoring area with the default range.
|
DebugMonitorArea.SpecifiedAddressRange
|
Specify the address range of a debug monitoring area.
|
DebugMonitorArea.NotSet
|
A debug monitoring area is not specified.
|
[Reference]
Set value
[Detailed description]
- | This property is for setting or referring to whether or not a debug monitoring area is set. It is a link option for the active project. |
[Example of use]
>>>build.Link.SetDebugMonitorArea = DebugMonitorArea.SpecifiedAddressRange
>>>print build.Link.SetDebugMonitorArea
SpecifiedAddressRange
>>>
|