MidiMountain 0.4.0
|
 |
Class TUniIniFile
Unit
UniIniFiles
Declaration
type TUniIniFile = class()
Description
Unicode Ini File Ini file class supporting Unicode text file formatMethods
Overview
 |
constructor Create(const FileName: WideString ); |
 |
destructor Destroy; override; |
 |
function ReadBool(const Section, Ident: WideString ; Default: Boolean): Boolean; virtual; |
 |
function ReadInteger(const Section, Ident: WideString ; Default: Longint): Longint; virtual; |
 |
procedure ReadSection(const Section: string; Strings: TWideStringList); virtual; |
 |
function ReadWideString (const Section, Ident, Default: WideString ): WideString ; virtual; |
 |
function SectionExists(const Section: WideString ): Boolean; |
 |
procedure WriteBool(const Section, Ident: WideString ; Value: Boolean); virtual; |
 |
procedure WriteInteger(const Section, Ident: WideString ; Value: Longint); virtual; |
 |
procedure WriteWideString (const Section, Ident, Value: WideString ); virtual; |
Description
 |
constructor Create(const FileName: WideString ); |
create file
 |
destructor Destroy; override; |
whack file
 |
function ReadBool(const Section, Ident: WideString ; Default: Boolean): Boolean; virtual; |
read a boolean
 |
function ReadInteger(const Section, Ident: WideString ; Default: Longint): Longint; virtual; |
read an integer value
 |
procedure ReadSection(const Section: string; Strings: TWideStringList); virtual; |
read a whole section into a TWideStringList
 |
function ReadWideString (const Section, Ident, Default: WideString ): WideString ; virtual; |
read a string value
 |
function SectionExists(const Section: WideString ): Boolean; |
check if a section extsts
 |
procedure WriteBool(const Section, Ident: WideString ; Value: Boolean); virtual; |
write a boolean
 |
procedure WriteInteger(const Section, Ident: WideString ; Value: Longint); virtual; |
write an integer value
 |
procedure WriteWideString (const Section, Ident, Value: WideString ); virtual; |
write a string value
MidiMountain 0.4.0 ©1999-2002 Adrian Meyer, developed with Delphi and Kylix
|