TimeSetType - property of the PmgTrendViewer object
Description:
Type of input time values in viewer methods.
If a method or a property of the viewer has the time as the input parameter, then before calling this method by the TimeSetType property it can be set if it goes about "local time", "standard time" or "daylight-saving time".
Values:
1 (default) - The input time is the "local time", i.e. the time in the daylight-saving season is moved by 1 hour forward against the standard time.
2 - The input time is the "standard time".
3 - The input time is the "daylight-saving time".
Note:
Property access
for read and write.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var nType = oTView.TimeSetType;
// Reading from the property
oTView.TimeSetType = 2;
// Writing into the property
Dim oTView
Set oTView = pMe.Items("../TrendView")
Dim nType
Set nType = oTView.TimeSetType
' Reading from the property
oTView.TimeSetType = 2
' Writing into the property