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. is the time in the daylight-saving season 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.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var nType = oTView.TimeSetType; //reading
oTView.TimeSetType = 2; //writing
Dim oTView, nType
Set oTView = pMe.Items("../TrendView")
Set nType = oTView.TimeSetType 'reading
oTView.TimeSetType = 2 'writing