TIniFile.ReadInteger

From Soldat Community Wiki
Revision as of 17:27, 15 June 2018 by Morko (talk | contribs) (Example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
function ReadInteger(const Section, Ident: string; Default: Longint): Longint
 Section: Section name
 Ident: Property name (key)
 Default: Value used as a result when the key has not been found
 Result: Value of a key (if successful) or Default (if not)

Description

This function will try to read an integer value from specified section and key
If it fails to do so for some reason, the Default value is returned.

Example

example.ini in soldatserver's root folder

[ModConfig]
Players=2

script code:

const
  // assuming Sandboxed Level < 2
  PATH = 'example.ini';
var
  Ini: TIniFile;
  temp: LongInt;

begin
  Ini := File.CreateINI(PATH);
  temp := Ini.ReadInteger('modconfig','Players',0); // temp = 2
  Ini.Free;
end.