lntSetTraceColor
lntSetTraceColor(
x_traceID
t_color
[ w_window ]
)
=> t / nil
Description
Changes the color of the specified trace to the specified color in the given window.
Arguments
|
x_traceID
|
ID of the trace for which the color is to be changed.
|
|
t_color
|
Color to be applied to the specified trace.
Supported colors: blue, cyan, lime, magenta, orange, pink, purple, red, yellow
|
|
w_window
|
ID of the window containing the specified trace.
When not specified, the trace (if it exists) is updated in the current window.
|
Value Returned
|
t
|
Trace color was updated.
|
|
nil
|
Trace color could not be updated.
|
Example
lntSetTraceColor(1 "cyan" window(2))
Updates the color of the trace with ID 1 in window 2 to color cyan.
Related Topics
Tracing Nets
Net Tracer Options
Return to top