ActiveMarkerVisible property (TrendPro object)
Returns or sets whether point markers (measured data points) for the selected trace display. Read/write. Boolean.
Syntax
TrendPro1
.ActiveMarkerVisible
[ = 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: Markers are visible during runtime
- False: Markers are not visible during runtime
Example
Private Sub SetActiveMarkerVisible() TrendPro1.ActiveMarkerVisible = True End Sub
Provide Feedback