可以比较一下和set的细微差别,2者的事件有所差异。
还是拿原来那个 趋势图一拉游标,所有点就变时间的例子,你可以看看区别。
我们把所有的trend 声明成 withEvents的 一个TNDX 对象
当你选择一个趋势图的时候 我们set它为 tndX
tndx也是一个对象,事件就是DropCursor
Option Explicit
Dim WithEvents tndX As PBSymLib.Trend
Private Sub Display_SelectionChange()
Dim smbX As PBObjLib.Symbol
For Each smbX In Application.ActiveDisplay.SelectedSymbols
If smbX.Type = pbSymbolTrend Then
Set tndX = smbX
End If
Next smbX
End Sub
Private Sub tndX_DropCursor(bCancel As Boolean, ByVal nCursor As Integer, ByVal NewTime As String)
Dim smbY As PBObjLib.Symbol
For Each smbY In thisdisplay.Symbols
If smbY.Type = pbSymbolValue Then
smbY.SetTimeRange “”, NewTime
End If
Next smbY
End Sub