TimePeriodAbsoluteMode property (XY Plot object)
Returns or sets whether the current time period is an absolute or relative time period. Read/write. Boolean.
Syntax
XYPlot1
.TimePeriodAbsoluteMode
[ = state
]where
XYPlot1
- is the name of an XY Plot object or an expression that evaluates to an XY Plot object.state -
is a parameter of the type Boolean that can be set to one of the following:- True:Sets the current time period to an absolute time period.
- False:Sets the current time period to a relative time period.
Example
Private Sub TimePeriodAbsoluteMode() XYPlot1.TimePeriodAbsoluteMode = True End Sub
Provide Feedback