Difference between revisions of "TIniFile.SectionExists"
(new page) |
m |
||
Line 1: | Line 1: | ||
'''''function SectionExists(const Section: string): Boolean''''' | '''''function SectionExists(const Section: string): Boolean''''' | ||
Section: Section name | Section: Section name | ||
− | Result: TRUE if a section exists | + | Result: TRUE if a section exists<br> |
==Description== | ==Description== |
Revision as of 01:22, 21 August 2013
function SectionExists(const Section: string): Boolean Section: Section name Result: TRUE if a section exists
Description
This function will check whether a section exists in a TIniFile and return TRUE if so, FALSE otherwise.
Example
example.ini in soldatserver's root folder
[ExampleSection]
exvalue=2
[ExampleUPPER]
exvalue2=3
script code:
const
// assuming Sandboxed Level < 2
PATH = 'example.ini';
var
Ini: TIniFile;
temp: Boolean;
begin
Ini := File.CreateINI(PATH);
temp := Ini.SectionExists('ExampleSection'); // temp = TRUE
temp := Ini.SectionExists('Exampleupper'); // temp = TRUE
Ini.CaseSensitive := TRUE;
temp := Ini.SectionExists('Exampleupper'); // temp = FALSE
end.