TCustomIniFile
Overview
Location
-
Reference:
- Delphi.dll .NET
- delphi.jar Cooper
- Delphi.fx Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
- libDelphi.fx Toffee
- Namespace: RemObjects.Elements.RTL.Delphi
- Platforms: .NET, Cooper, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows, Toffee
constructor
constructor(aFileName: DelphiString)
TCustomIniFile(DelphiString aFileName)
init(_ aFileName: DelphiString)
TCustomIniFile(DelphiString aFileName)
Sub New(aFileName As DelphiString)
Parameters:
- aFileName:
DeleteKey virtual abstract
method DeleteKey(Section: DelphiString; Ident: DelphiString)
void DeleteKey(DelphiString Section, DelphiString Ident)
func DeleteKey(_ Section: DelphiString, _ Ident: DelphiString)
void DeleteKey(DelphiString Section, DelphiString Ident)
Sub DeleteKey(Section As DelphiString, Ident As DelphiString)
Parameters:
- Section:
- Ident:
EraseSection virtual abstract
method EraseSection(Section: DelphiString)
void EraseSection(DelphiString Section)
func EraseSection(_ Section: DelphiString)
void EraseSection(DelphiString Section)
Sub EraseSection(Section As DelphiString)
Parameters:
- Section:
FileName virtual
property FileName: DelphiString read;
DelphiString FileName { get; }
var FileName: DelphiString { get{} }
DelphiString FileName { __get; }
ReadOnly Property FileName() As DelphiString
ReadBool virtual
method ReadBool(aSection: DelphiString; aIdent: DelphiString; aDefault: Boolean): Boolean
Boolean ReadBool(DelphiString aSection, DelphiString aIdent, Boolean aDefault)
func ReadBool(_ aSection: DelphiString, _ aIdent: DelphiString, _ aDefault: Boolean) -> Boolean
Boolean ReadBool(DelphiString aSection, DelphiString aIdent, Boolean aDefault)
Function ReadBool(aSection As DelphiString, aIdent As DelphiString, aDefault As Boolean) As Boolean
Parameters:
- aSection:
- aIdent:
- aDefault:
ReadDate virtual
method ReadDate(aSection: DelphiString; aName: DelphiString; aDefault: TDateTime): TDateTime
TDateTime ReadDate(DelphiString aSection, DelphiString aName, TDateTime aDefault)
func ReadDate(_ aSection: DelphiString, _ aName: DelphiString, _ aDefault: TDateTime) -> TDateTime
TDateTime ReadDate(DelphiString aSection, DelphiString aName, TDateTime aDefault)
Function ReadDate(aSection As DelphiString, aName As DelphiString, aDefault As TDateTime) As TDateTime
Parameters:
- aSection:
- aName:
- aDefault:
ReadDateTime virtual
method ReadDateTime(aSection: DelphiString; aName: DelphiString; aDefault: TDateTime): TDateTime
TDateTime ReadDateTime(DelphiString aSection, DelphiString aName, TDateTime aDefault)
func ReadDateTime(_ aSection: DelphiString, _ aName: DelphiString, _ aDefault: TDateTime) -> TDateTime
TDateTime ReadDateTime(DelphiString aSection, DelphiString aName, TDateTime aDefault)
Function ReadDateTime(aSection As DelphiString, aName As DelphiString, aDefault As TDateTime) As TDateTime
Parameters:
- aSection:
- aName:
- aDefault:
ReadFloat virtual
method ReadFloat(aSection: DelphiString; aName: DelphiString; aDefault: Double): Double
Double ReadFloat(DelphiString aSection, DelphiString aName, Double aDefault)
func ReadFloat(_ aSection: DelphiString, _ aName: DelphiString, _ aDefault: Double) -> Double
Double ReadFloat(DelphiString aSection, DelphiString aName, Double aDefault)
Function ReadFloat(aSection As DelphiString, aName As DelphiString, aDefault As Double) As Double
Parameters:
- aSection:
- aName:
- aDefault:
ReadInteger virtual
method ReadInteger(aSection: DelphiString; aIdent: DelphiString; aDefault: Int32): Int32
Int32 ReadInteger(DelphiString aSection, DelphiString aIdent, Int32 aDefault)
func ReadInteger(_ aSection: DelphiString, _ aIdent: DelphiString, _ aDefault: Int32) -> Int32
Integer ReadInteger(DelphiString aSection, DelphiString aIdent, Integer aDefault)
Function ReadInteger(aSection As DelphiString, aIdent As DelphiString, aDefault As Int32) As Int32
Parameters:
- aSection:
- aIdent:
- aDefault:
ReadSection virtual abstract
method ReadSection(Section: DelphiString; DelphiStrings: TStrings)
void ReadSection(DelphiString Section, TStrings DelphiStrings)
func ReadSection(_ Section: DelphiString, _ DelphiStrings: TStrings)
void ReadSection(DelphiString Section, TStrings DelphiStrings)
Sub ReadSection(Section As DelphiString, DelphiStrings As TStrings)
Parameters:
- Section:
- DelphiStrings:
ReadSections (DelphiString, TStrings) virtual
method ReadSections(aSection: DelphiString; aStrings: TStrings)
void ReadSections(DelphiString aSection, TStrings aStrings)
func ReadSections(_ aSection: DelphiString, _ aStrings: TStrings)
void ReadSections(DelphiString aSection, TStrings aStrings)
Sub ReadSections(aSection As DelphiString, aStrings As TStrings)
Parameters:
- aSection:
- aStrings:
ReadSections (TStrings) virtual abstract
method ReadSections(DelphiStrings: TStrings)
void ReadSections(TStrings DelphiStrings)
func ReadSections(_ DelphiStrings: TStrings)
void ReadSections(TStrings DelphiStrings)
Sub ReadSections(DelphiStrings As TStrings)
Parameters:
- DelphiStrings:
ReadSectionValues virtual abstract
method ReadSectionValues(aSection: DelphiString; aStrings: TStrings)
void ReadSectionValues(DelphiString aSection, TStrings aStrings)
func ReadSectionValues(_ aSection: DelphiString, _ aStrings: TStrings)
void ReadSectionValues(DelphiString aSection, TStrings aStrings)
Sub ReadSectionValues(aSection As DelphiString, aStrings As TStrings)
Parameters:
- aSection:
- aStrings:
ReadString virtual abstract
method ReadString(aSection: DelphiString; aIdent: DelphiString; aDefault: DelphiString): DelphiString
DelphiString ReadString(DelphiString aSection, DelphiString aIdent, DelphiString aDefault)
func ReadString(_ aSection: DelphiString, _ aIdent: DelphiString, _ aDefault: DelphiString) -> DelphiString
DelphiString ReadString(DelphiString aSection, DelphiString aIdent, DelphiString aDefault)
Function ReadString(aSection As DelphiString, aIdent As DelphiString, aDefault As DelphiString) As DelphiString
Parameters:
- aSection:
- aIdent:
- aDefault:
ReadSubSections virtual
method ReadSubSections(aSection: DelphiString; aStrings: TStrings; aRecurse: Boolean)
void ReadSubSections(DelphiString aSection, TStrings aStrings, Boolean aRecurse)
func ReadSubSections(_ aSection: DelphiString, _ aStrings: TStrings, _ aRecurse: Boolean)
void ReadSubSections(DelphiString aSection, TStrings aStrings, Boolean aRecurse)
Sub ReadSubSections(aSection As DelphiString, aStrings As TStrings, aRecurse As Boolean)
Parameters:
- aSection:
- aStrings:
- aRecurse:
ReadTime virtual
method ReadTime(aSection: DelphiString; aName: DelphiString; aDefault: TDateTime): TDateTime
TDateTime ReadTime(DelphiString aSection, DelphiString aName, TDateTime aDefault)
func ReadTime(_ aSection: DelphiString, _ aName: DelphiString, _ aDefault: TDateTime) -> TDateTime
TDateTime ReadTime(DelphiString aSection, DelphiString aName, TDateTime aDefault)
Function ReadTime(aSection As DelphiString, aName As DelphiString, aDefault As TDateTime) As TDateTime
Parameters:
- aSection:
- aName:
- aDefault:
SectionExists virtual
method SectionExists(aSection: DelphiString): Boolean
Boolean SectionExists(DelphiString aSection)
func SectionExists(_ aSection: DelphiString) -> Boolean
Boolean SectionExists(DelphiString aSection)
Function SectionExists(aSection As DelphiString) As Boolean
Parameters:
- aSection:
UpdateFile virtual abstract .NET, Cooper, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
method UpdateFile
void UpdateFile()
func UpdateFile()
void UpdateFile()
Sub UpdateFile()
UpdateFile UpdateFile() virtual abstract Toffee
func UpdateFile(UpdateFile )
Parameters:
- :
ValueExists virtual
method ValueExists(aSection: DelphiString; aIdent: DelphiString): Boolean
Boolean ValueExists(DelphiString aSection, DelphiString aIdent)
func ValueExists(_ aSection: DelphiString, _ aIdent: DelphiString) -> Boolean
Boolean ValueExists(DelphiString aSection, DelphiString aIdent)
Function ValueExists(aSection As DelphiString, aIdent As DelphiString) As Boolean
Parameters:
- aSection:
- aIdent:
WriteBool virtual
method WriteBool(aSection: DelphiString; aIdent: DelphiString; aValue: Boolean)
void WriteBool(DelphiString aSection, DelphiString aIdent, Boolean aValue)
func WriteBool(_ aSection: DelphiString, _ aIdent: DelphiString, _ aValue: Boolean)
void WriteBool(DelphiString aSection, DelphiString aIdent, Boolean aValue)
Sub WriteBool(aSection As DelphiString, aIdent As DelphiString, aValue As Boolean)
Parameters:
- aSection:
- aIdent:
- aValue:
WriteDate virtual
method WriteDate(Section: DelphiString; Name: DelphiString; Value: TDateTime)
void WriteDate(DelphiString Section, DelphiString Name, TDateTime Value)
func WriteDate(_ Section: DelphiString, _ Name: DelphiString, _ Value: TDateTime)
void WriteDate(DelphiString Section, DelphiString Name, TDateTime Value)
Sub WriteDate(Section As DelphiString, Name As DelphiString, Value As TDateTime)
Parameters:
- Section:
- Name:
- Value:
WriteDateTime virtual
method WriteDateTime(Section: DelphiString; Name: DelphiString; Value: TDateTime)
void WriteDateTime(DelphiString Section, DelphiString Name, TDateTime Value)
func WriteDateTime(_ Section: DelphiString, _ Name: DelphiString, _ Value: TDateTime)
void WriteDateTime(DelphiString Section, DelphiString Name, TDateTime Value)
Sub WriteDateTime(Section As DelphiString, Name As DelphiString, Value As TDateTime)
Parameters:
- Section:
- Name:
- Value:
WriteFloat virtual
method WriteFloat(aSection: DelphiString; aName: DelphiString; aValue: Double)
void WriteFloat(DelphiString aSection, DelphiString aName, Double aValue)
func WriteFloat(_ aSection: DelphiString, _ aName: DelphiString, _ aValue: Double)
void WriteFloat(DelphiString aSection, DelphiString aName, Double aValue)
Sub WriteFloat(aSection As DelphiString, aName As DelphiString, aValue As Double)
Parameters:
- aSection:
- aName:
- aValue:
WriteInteger virtual
method WriteInteger(aSection: DelphiString; aIdent: DelphiString; aValue: Int32)
void WriteInteger(DelphiString aSection, DelphiString aIdent, Int32 aValue)
func WriteInteger(_ aSection: DelphiString, _ aIdent: DelphiString, _ aValue: Int32)
void WriteInteger(DelphiString aSection, DelphiString aIdent, Integer aValue)
Sub WriteInteger(aSection As DelphiString, aIdent As DelphiString, aValue As Int32)
Parameters:
- aSection:
- aIdent:
- aValue:
WriteString virtual abstract
method WriteString(aSection: DelphiString; aIdent: DelphiString; aValue: DelphiString)
void WriteString(DelphiString aSection, DelphiString aIdent, DelphiString aValue)
func WriteString(_ aSection: DelphiString, _ aIdent: DelphiString, _ aValue: DelphiString)
void WriteString(DelphiString aSection, DelphiString aIdent, DelphiString aValue)
Sub WriteString(aSection As DelphiString, aIdent As DelphiString, aValue As DelphiString)
Parameters:
- aSection:
- aIdent:
- aValue:
WriteTime virtual
method WriteTime(Section: DelphiString; Name: DelphiString; Value: TDateTime)
void WriteTime(DelphiString Section, DelphiString Name, TDateTime Value)
func WriteTime(_ Section: DelphiString, _ Name: DelphiString, _ Value: TDateTime)
void WriteTime(DelphiString Section, DelphiString Name, TDateTime Value)
Sub WriteTime(Section As DelphiString, Name As DelphiString, Value As TDateTime)
Parameters:
- Section:
- Name:
- Value:
FileName virtual
property FileName: DelphiString read;
DelphiString FileName { get; }
var FileName: DelphiString { get{} }
DelphiString FileName { __get; }
ReadOnly Property FileName() As DelphiString
constructor
constructor(aFileName: DelphiString)
TCustomIniFile(DelphiString aFileName)
init(_ aFileName: DelphiString)
TCustomIniFile(DelphiString aFileName)
Sub New(aFileName As DelphiString)
Parameters:
- aFileName:
DeleteKey virtual abstract
method DeleteKey(Section: DelphiString; Ident: DelphiString)
void DeleteKey(DelphiString Section, DelphiString Ident)
func DeleteKey(_ Section: DelphiString, _ Ident: DelphiString)
void DeleteKey(DelphiString Section, DelphiString Ident)
Sub DeleteKey(Section As DelphiString, Ident As DelphiString)
Parameters:
- Section:
- Ident:
EraseSection virtual abstract
method EraseSection(Section: DelphiString)
void EraseSection(DelphiString Section)
func EraseSection(_ Section: DelphiString)
void EraseSection(DelphiString Section)
Sub EraseSection(Section As DelphiString)
Parameters:
- Section:
ReadBool virtual
method ReadBool(aSection: DelphiString; aIdent: DelphiString; aDefault: Boolean): Boolean
Boolean ReadBool(DelphiString aSection, DelphiString aIdent, Boolean aDefault)
func ReadBool(_ aSection: DelphiString, _ aIdent: DelphiString, _ aDefault: Boolean) -> Boolean
Boolean ReadBool(DelphiString aSection, DelphiString aIdent, Boolean aDefault)
Function ReadBool(aSection As DelphiString, aIdent As DelphiString, aDefault As Boolean) As Boolean
Parameters:
- aSection:
- aIdent:
- aDefault:
ReadDate virtual
method ReadDate(aSection: DelphiString; aName: DelphiString; aDefault: TDateTime): TDateTime
TDateTime ReadDate(DelphiString aSection, DelphiString aName, TDateTime aDefault)
func ReadDate(_ aSection: DelphiString, _ aName: DelphiString, _ aDefault: TDateTime) -> TDateTime
TDateTime ReadDate(DelphiString aSection, DelphiString aName, TDateTime aDefault)
Function ReadDate(aSection As DelphiString, aName As DelphiString, aDefault As TDateTime) As TDateTime
Parameters:
- aSection:
- aName:
- aDefault:
ReadDateTime virtual
method ReadDateTime(aSection: DelphiString; aName: DelphiString; aDefault: TDateTime): TDateTime
TDateTime ReadDateTime(DelphiString aSection, DelphiString aName, TDateTime aDefault)
func ReadDateTime(_ aSection: DelphiString, _ aName: DelphiString, _ aDefault: TDateTime) -> TDateTime
TDateTime ReadDateTime(DelphiString aSection, DelphiString aName, TDateTime aDefault)
Function ReadDateTime(aSection As DelphiString, aName As DelphiString, aDefault As TDateTime) As TDateTime
Parameters:
- aSection:
- aName:
- aDefault:
ReadFloat virtual
method ReadFloat(aSection: DelphiString; aName: DelphiString; aDefault: Double): Double
Double ReadFloat(DelphiString aSection, DelphiString aName, Double aDefault)
func ReadFloat(_ aSection: DelphiString, _ aName: DelphiString, _ aDefault: Double) -> Double
Double ReadFloat(DelphiString aSection, DelphiString aName, Double aDefault)
Function ReadFloat(aSection As DelphiString, aName As DelphiString, aDefault As Double) As Double
Parameters:
- aSection:
- aName:
- aDefault:
ReadInteger virtual
method ReadInteger(aSection: DelphiString; aIdent: DelphiString; aDefault: Int32): Int32
Int32 ReadInteger(DelphiString aSection, DelphiString aIdent, Int32 aDefault)
func ReadInteger(_ aSection: DelphiString, _ aIdent: DelphiString, _ aDefault: Int32) -> Int32
Integer ReadInteger(DelphiString aSection, DelphiString aIdent, Integer aDefault)
Function ReadInteger(aSection As DelphiString, aIdent As DelphiString, aDefault As Int32) As Int32
Parameters:
- aSection:
- aIdent:
- aDefault:
ReadSection virtual abstract
method ReadSection(Section: DelphiString; DelphiStrings: TStrings)
void ReadSection(DelphiString Section, TStrings DelphiStrings)
func ReadSection(_ Section: DelphiString, _ DelphiStrings: TStrings)
void ReadSection(DelphiString Section, TStrings DelphiStrings)
Sub ReadSection(Section As DelphiString, DelphiStrings As TStrings)
Parameters:
- Section:
- DelphiStrings:
ReadSections (DelphiString, TStrings) virtual
method ReadSections(aSection: DelphiString; aStrings: TStrings)
void ReadSections(DelphiString aSection, TStrings aStrings)
func ReadSections(_ aSection: DelphiString, _ aStrings: TStrings)
void ReadSections(DelphiString aSection, TStrings aStrings)
Sub ReadSections(aSection As DelphiString, aStrings As TStrings)
Parameters:
- aSection:
- aStrings:
ReadSections (TStrings) virtual abstract
method ReadSections(DelphiStrings: TStrings)
void ReadSections(TStrings DelphiStrings)
func ReadSections(_ DelphiStrings: TStrings)
void ReadSections(TStrings DelphiStrings)
Sub ReadSections(DelphiStrings As TStrings)
Parameters:
- DelphiStrings:
ReadSectionValues virtual abstract
method ReadSectionValues(aSection: DelphiString; aStrings: TStrings)
void ReadSectionValues(DelphiString aSection, TStrings aStrings)
func ReadSectionValues(_ aSection: DelphiString, _ aStrings: TStrings)
void ReadSectionValues(DelphiString aSection, TStrings aStrings)
Sub ReadSectionValues(aSection As DelphiString, aStrings As TStrings)
Parameters:
- aSection:
- aStrings:
ReadString virtual abstract
method ReadString(aSection: DelphiString; aIdent: DelphiString; aDefault: DelphiString): DelphiString
DelphiString ReadString(DelphiString aSection, DelphiString aIdent, DelphiString aDefault)
func ReadString(_ aSection: DelphiString, _ aIdent: DelphiString, _ aDefault: DelphiString) -> DelphiString
DelphiString ReadString(DelphiString aSection, DelphiString aIdent, DelphiString aDefault)
Function ReadString(aSection As DelphiString, aIdent As DelphiString, aDefault As DelphiString) As DelphiString
Parameters:
- aSection:
- aIdent:
- aDefault:
ReadSubSections virtual
method ReadSubSections(aSection: DelphiString; aStrings: TStrings; aRecurse: Boolean)
void ReadSubSections(DelphiString aSection, TStrings aStrings, Boolean aRecurse)
func ReadSubSections(_ aSection: DelphiString, _ aStrings: TStrings, _ aRecurse: Boolean)
void ReadSubSections(DelphiString aSection, TStrings aStrings, Boolean aRecurse)
Sub ReadSubSections(aSection As DelphiString, aStrings As TStrings, aRecurse As Boolean)
Parameters:
- aSection:
- aStrings:
- aRecurse:
ReadTime virtual
method ReadTime(aSection: DelphiString; aName: DelphiString; aDefault: TDateTime): TDateTime
TDateTime ReadTime(DelphiString aSection, DelphiString aName, TDateTime aDefault)
func ReadTime(_ aSection: DelphiString, _ aName: DelphiString, _ aDefault: TDateTime) -> TDateTime
TDateTime ReadTime(DelphiString aSection, DelphiString aName, TDateTime aDefault)
Function ReadTime(aSection As DelphiString, aName As DelphiString, aDefault As TDateTime) As TDateTime
Parameters:
- aSection:
- aName:
- aDefault:
SectionExists virtual
method SectionExists(aSection: DelphiString): Boolean
Boolean SectionExists(DelphiString aSection)
func SectionExists(_ aSection: DelphiString) -> Boolean
Boolean SectionExists(DelphiString aSection)
Function SectionExists(aSection As DelphiString) As Boolean
Parameters:
- aSection:
UpdateFile virtual abstract .NET, Cooper, Island-Android, Island-iOS, Island-iOS Simulator, Island-Mac Catalyst, Island-macOS, Island-tvOS, Island-tvOS Simulator, Island-Ubuntu, Island-watchOS, Island-watchOS Simulator, Island-Windows
method UpdateFile
void UpdateFile()
func UpdateFile()
void UpdateFile()
Sub UpdateFile()
UpdateFile UpdateFile() virtual abstract Toffee
func UpdateFile(UpdateFile )
Parameters:
- :
ValueExists virtual
method ValueExists(aSection: DelphiString; aIdent: DelphiString): Boolean
Boolean ValueExists(DelphiString aSection, DelphiString aIdent)
func ValueExists(_ aSection: DelphiString, _ aIdent: DelphiString) -> Boolean
Boolean ValueExists(DelphiString aSection, DelphiString aIdent)
Function ValueExists(aSection As DelphiString, aIdent As DelphiString) As Boolean
Parameters:
- aSection:
- aIdent:
WriteBool virtual
method WriteBool(aSection: DelphiString; aIdent: DelphiString; aValue: Boolean)
void WriteBool(DelphiString aSection, DelphiString aIdent, Boolean aValue)
func WriteBool(_ aSection: DelphiString, _ aIdent: DelphiString, _ aValue: Boolean)
void WriteBool(DelphiString aSection, DelphiString aIdent, Boolean aValue)
Sub WriteBool(aSection As DelphiString, aIdent As DelphiString, aValue As Boolean)
Parameters:
- aSection:
- aIdent:
- aValue:
WriteDate virtual
method WriteDate(Section: DelphiString; Name: DelphiString; Value: TDateTime)
void WriteDate(DelphiString Section, DelphiString Name, TDateTime Value)
func WriteDate(_ Section: DelphiString, _ Name: DelphiString, _ Value: TDateTime)
void WriteDate(DelphiString Section, DelphiString Name, TDateTime Value)
Sub WriteDate(Section As DelphiString, Name As DelphiString, Value As TDateTime)
Parameters:
- Section:
- Name:
- Value:
WriteDateTime virtual
method WriteDateTime(Section: DelphiString; Name: DelphiString; Value: TDateTime)
void WriteDateTime(DelphiString Section, DelphiString Name, TDateTime Value)
func WriteDateTime(_ Section: DelphiString, _ Name: DelphiString, _ Value: TDateTime)
void WriteDateTime(DelphiString Section, DelphiString Name, TDateTime Value)
Sub WriteDateTime(Section As DelphiString, Name As DelphiString, Value As TDateTime)
Parameters:
- Section:
- Name:
- Value:
WriteFloat virtual
method WriteFloat(aSection: DelphiString; aName: DelphiString; aValue: Double)
void WriteFloat(DelphiString aSection, DelphiString aName, Double aValue)
func WriteFloat(_ aSection: DelphiString, _ aName: DelphiString, _ aValue: Double)
void WriteFloat(DelphiString aSection, DelphiString aName, Double aValue)
Sub WriteFloat(aSection As DelphiString, aName As DelphiString, aValue As Double)
Parameters:
- aSection:
- aName:
- aValue:
WriteInteger virtual
method WriteInteger(aSection: DelphiString; aIdent: DelphiString; aValue: Int32)
void WriteInteger(DelphiString aSection, DelphiString aIdent, Int32 aValue)
func WriteInteger(_ aSection: DelphiString, _ aIdent: DelphiString, _ aValue: Int32)
void WriteInteger(DelphiString aSection, DelphiString aIdent, Integer aValue)
Sub WriteInteger(aSection As DelphiString, aIdent As DelphiString, aValue As Int32)
Parameters:
- aSection:
- aIdent:
- aValue:
WriteString virtual abstract
method WriteString(aSection: DelphiString; aIdent: DelphiString; aValue: DelphiString)
void WriteString(DelphiString aSection, DelphiString aIdent, DelphiString aValue)
func WriteString(_ aSection: DelphiString, _ aIdent: DelphiString, _ aValue: DelphiString)
void WriteString(DelphiString aSection, DelphiString aIdent, DelphiString aValue)
Sub WriteString(aSection As DelphiString, aIdent As DelphiString, aValue As DelphiString)
Parameters:
- aSection:
- aIdent:
- aValue:
WriteTime virtual
method WriteTime(Section: DelphiString; Name: DelphiString; Value: TDateTime)
void WriteTime(DelphiString Section, DelphiString Name, TDateTime Value)
func WriteTime(_ Section: DelphiString, _ Name: DelphiString, _ Value: TDateTime)
void WriteTime(DelphiString Section, DelphiString Name, TDateTime Value)
Sub WriteTime(Section As DelphiString, Name As DelphiString, Value As TDateTime)
Parameters:
- Section:
- Name:
- Value: