TimePeriodStart property (TrendPro object)
Returns or sets the start date and time for the current time period. To set this property, the TimePeriodAbsoluteMode property must be set to
True
. Read/write. String.Syntax
TrendPro1
.TimePeriodStart
[ = value
]where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro object.value -
is a parameter of the type String. This is a date/time string such as "2016/01/01 12:00 PM".Example
Private Sub SetTimePeriodStart() TrendPro1.TimePeriodAbsoluteMode = True TrendPro1.TimePeriodStart = "2016/01/01 09:15 AM" End Sub
Provide Feedback