ActiveTraceLineDashStyle property (TrendPro object)
Returns or sets the line dash style for the selected trace. Read/write. Long.
Syntax
TrendPro1
.ActiveTraceLineDashStyle
[ = value
]where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro object.value
- is a parameter of the type Long that specifies the line dash style. Valid values are:- Solid = 0
- Dash = 1
- Dot = 2
- Dashdot = 3
- DashDotDot = 4
Example
Private Sub SetActiveTraceLineDashStyle() TrendPro1.ActiveTraceLineDashStyle = 1 End Sub
Provide Feedback