StrToDateTimeDef
Convert string to date/time, returning a default value
Declaration
Source position: datih.inc line 187
  function StrToDateTimeDef(const S: ShortString; 
                           const Defvalue: TDateTime) : TDateTime;
  function StrToDateTimeDef(const S: AnsiString; 
                           const Defvalue: TDateTime) : TDateTime;
  function StrToDateTimeDef(const S: AnsiString; 
                           const Defvalue: TDateTime; 
                           const FormatSettings: TFormatSettings)
                            : TDateTime;
Description
StrToDateTimeDef tries to convert the string S to a valid TDateTime date and time value, and returns DefValue if S does not contain a valid date-time indication.
Errors
None.
See also
| Name | Description | 
|---|---|
| StrToDateDef | Convert string to date, returning a default value | 
| StrToDateTime | Convert a date/time string to a TDateTime value. | 
| StrToTimeDef | Convert string to time, returning a default value | 
| TryStrToDateTime | Try to convert a string with date/time indication to a TDateTime value |