System.IniFiles.TCustomIniFile.ReadDateTime
Delphi
function ReadDateTime(const Section, Name: string; Default: TDateTime): TDateTime; virtual;
C++
virtual System::TDateTime __fastcall ReadDateTime(const System::UnicodeString Section, const System::UnicodeString Name, System::TDateTime Default);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.IniFiles.pas System.IniFiles.hpp |
System.IniFiles | TCustomIniFile |
Description
Retrieves a date-time value from an ini file.
Call ReadDateTime to read a date-time value from an ini file. Section identifies the section in the file that contains the desired key. Ident is the name of the key from which to retrieve the date-time value. Default is the date-time value to return if the:
- Section does not exist.
- Key does not exist.
- Data value for the key is not assigned.