Click or drag to resize

SetTimeSep Function

X#
Change the setting that determines the separation character to be used in time strings.

Namespace:  XSharp.Core
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 FUNCTION SetTimeSep() AS DWORD
Request Example View Source

Return Value

Type: DWord
The previous setting.
Remarks
Examples
This example changes the way times are displayed from 24:00:00 to 24.00.00:
X#
1FUNCTION Start()
2    SetTimeSep(Asc("."))
3    QOut(Time())            // 24.00.00
See Also