TimePeriodEnd property (TrendPro object)
Returns or sets the end 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
.TimePeriodEnd
[ = 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 SetTimePeriodEnd() TrendPro1.TimePeriodAbsoluteMode = True TrendPro1.TimePeriodEnd = "2016/01/01 09:15 AM" End Sub
Provide Feedback