ActiveTraceVisible property (TrendPro object)
Returns or sets whether the selected trace displays on the chart. Read/write. Boolean.
Syntax
TrendPro1
.ActiveTraceVisible
[ = state
]where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro object.state
- is a parameter of the type Boolean that can be set to one of the following:- True: Shows the selected trace.
- False: Does not show the selected trace.
Example
Private Sub SetActiveTraceVisible() TrendPro1.ActiveTraceVisible = True End Sub
Provide Feedback