IsMetricSystem function
|
![]() ![]() ![]() |
acUtils
|
function IsMetricSystem: Boolean;
|
Checks the system, whether it uses Metric or old British measurement system.
|
function IsMetricSystem: Boolean;
|
begin
|
Result := GetLocaleChar(GetThreadLocale, LOCALE_IMEASURE, #0) = '0';
|
end;
|