System.IniFiles.TMemIniFile.AutoSave

From RAD Studio API Documentation
Revision as of 13:05, 16 February 2016 by JorgeL (talk | contribs) (RS-73977)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

property AutoSave: Boolean read FAutoSave write FAutoSave;

C++

__property bool AutoSave = {read=FAutoSave, write=FAutoSave, nodefault};

Properties

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

Description

When the destructor is called , the AutoSave property automatically saves the TMemIniFile content to the INI file.

Use the AutoSave property to indicate whether the content of TMemIniFile should be automatically saved or not. Set AutoSave to True to automatically save the modified content of TMemIniFile to the INI file if the destructor is called.

See Also