Example: ChartModeChanged event
Private Sub Trend1_ChartModeChanged(ByVal NewMode As RSTrend.rstchartModes) Dim ms As String If NewMode = rstAutomatic Then ms = "automatic" Else ms = "manual" End If MsgBox "Going to " & ms & " mode." End Sub
Provide Feedback