Example: StartTime property

Example 1:
Private Function GetStartTime() As Date GetStartTime = Trend1.XAxis.StartTime End Function
Example 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
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.
Normal