SetDecimalSep Function | |
Return and optionally change the setting that determines the decimal separation character to be used in numeric-to-string conversion functions.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION SetDecimalSep() AS DWORD
public static uint SetDecimalSep()
Request Example
View SourceReturn Value
Type:
DWord
If
nNewSetting is not specified, SetDecimalSep() returns the current setting.
If
nNewSetting is specified, the previous setting is returned.
Remarks Examples
This example changes the decimal separator from a period (.) to a comma (,):
1FUNCTION Start()
2 LOCAL rPi := 3.14 AS REAL4
3 SetDecimalSep(Asc(","))
4 QOut(rPi)
See Also