System.IniFiles.TMemIniFile.EraseSection

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure EraseSection(const Section: string); override;

C++

virtual void __fastcall EraseSection(const System::UnicodeString Section);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.IniFiles.pas
System.IniFiles.hpp
System.IniFiles TMemIniFile

Description

Erases an entire section of the INI file.

Call EraseSection to remove a section, all its keys, and their data values from an INI file. Section identifies the INI file section to remove. If a section cannot be removed, an exception is raised.

EraseSection only affects the in-memory copy of the INI file, not the copy on disk. The change is not written to disk until you call UpdateFile.

See Also