System.IniFiles.TIniFile.ReadString
Delphi
function ReadString(const Section, Ident, Default: string): string; override;
C++
virtual System::UnicodeString __fastcall ReadString(const System::UnicodeString Section, const System::UnicodeString Ident, const System::UnicodeString Default);
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| function | public | System.IniFiles.pas System.IniFiles.hpp |
System.IniFiles | TIniFile |
Description
Retrieves a string value from an INI file.
Call ReadString to read a string 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 value. Default is the string value to return if the:
Sectiondoes not exist.
- Key does not exist.
- Data value for the key is not assigned.
This version of ReadString is only available if the application is compiled for Windows.
See Also
Code Examples
- TetheringIniFileStorage code example (Delphi)