Return and optionally change the setting that determines whether time strings are in 12-hour or 24-hour format.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.7
Syntax FUNCTION GetAmPm() AS LOGIC
public static bool GetAmPm()
Request Example
View SourceReturn Value
Type:
Boolean
If <lNewSetting> is not specified, SetAMPM() returns the current setting.
If <lNewSetting> is specified, the previous setting is returned.
Remarks
Examples
This example shows the difference between the 12-hour and 24-hour display formats:
1SetPMExt(" pm")
2SetAMPM(FALSE)
3? TIME()
4SetAMPM(TRUE)
5? TIME()
See Also