System.Win.Registry.TRegistryIniFile.ReadString

From RAD Studio API Documentation
Jump to: navigation, search

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.Win.Registry.pas
System.Win.Registry.hpp
System.Win.Registry TRegistryIniFile

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:

Section does not exist.

Key does not exist.

Data value for the key is not assigned.

See Also

Code Examples