PreviousTrace method (TrendPro object)
Selects the previous trace in the chart's Legend. This method returns
True
if the previous trace was selected, and returns False
if the first trace in the Legend was already selected.Syntax
TrendPro1
.PreviousTrace
() As Boolean
where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro object.Example
Private Sub btnPreviousTrace() Dim result as Boolean Rem Select the previous tag in the tag list. result = TrendPro1.PreviousTrace() End Sub
Provide Feedback