Description:
Sets formatting rule for defined column with time.
Syntax:
Empty SetTimeFormat(String sWhat, String sFormat)
Parameters:
sWhat | (String) Specifies the column with time.
|
sFormat | (String) Formatting rule. See Pm.FormatDate. |
---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oViewer = pMe.Items("/Viewer");
oViewer.SetTimeFormat("on", "%d.%m.%Y %H:%M:%S.%T");
Dim oViewer
Set oViewer = pMe.Items("/Viewer")
oViewer.SetTimeFormat "on", "%d.%m.%Y %H:%M:%S.%T"