示例:StartTime 属性
示例1:
Private Function GetStartTime() As Date GetStartTime = Trend1.XAxis.StartTime End Function
示例2:
Private Sub Command1_Click() Dim DT As Date 'Define start time DT = #12/31/1998 10:30:00 AM# 'Must set Trend to pause mode. Unable to adjust x-axis 'start time while scrolling Trend1.Scroll = False 'Set the start time Trend1.XAxis.StartTime = DT End Sub
提供反馈