GetDateFormat Function | |
Return the current date format.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION GetDateFormat() AS STRING
public static string GetDateFormat()
Request Example
View SourceReturn Value
Type:
String
The default date format supplied with X# or a customized date format defined via the SetDateFormat() or SetDateCountry() functions.
Remarks Examples
This example returns the default date format:
1FUNCTION Start()
2 QOut(GetDateFormat())
See Also