ShortDateFormat: String;
The ShortDateFormat property returns short format of date taking into account regional parameter settings.
Sub UserProc;
Var
CI: ICultureInfo;
S: String;
Begin
CI := CultureInfo.Current;
S := CI.ShortDateFormat;
Debug.WriteLine(S);
End Sub UserProc;
After executing the example the console displays short date format determined in regional parameter settings.
See also: