TimePeriodAbsoluteMode property
Returns or sets whether the current time period is an absolute or relative time period. Read/write. Boolean.
Syntax
DataGrid1
.TimePeriodAbsoluteMode
[ = state
]where
DataGrid1
- is the name of a data grid object or an expression that evaluates to a data grid 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() DataGrid1.TimePeriodAbsoluteMode = True End Sub
Provide Feedback