ActiveTraceJoinPoint property (TrendPro object)
Returns or sets whether points for the selected trace are connected with a line or display as point markers. Read/write. Boolean.
Syntax
TrendPro1
.ActiveTraceJoinPoint
[ = 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:Uses a line to connect points for the selected trace.
- False: Uses markers to display points for the selected trace instead of connecting them with a line.
Example
Private Sub SetActiveTraceJoinPoint() TrendPro1.ActiveTraceJoinPoint = True End Sub
Provide Feedback