ActiveMarkerShape property (TrendPro object)
Returns or sets the shape of the point markers for the selected trace. Read/write. Long.
Syntax
TrendPro1
.ActiveMarkerShape
[ = value
]where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro object.value
- is a Long value that specifies the shape of the point marker. Valid values are:- Cross1 = 0
- Cross2 = 1
- Circle = 2
- Square = 3
- Triangle = 4
- FilledCircle = 5
- FilledSquare = 6
- FilledTriangle = 7
Example
Private Sub SetActiveMarkerShape() TrendPro1.ActiveMarkerShape = 3 End Sub
Provide Feedback