Ini_GetAllSectionVariables
Description
Section titled “Description”Reads all entries in section
Syntax
Section titled “Syntax”Ini_GetAllSectionVariables(sFile,sSection, sSeperateChar, bReturnAsArray, bMustExist) As Boolean
Parameters
Section titled “Parameters”sFile (String)
Section titled “sFile (String)”Filename
sSection (String)
Section titled “sSection (String)”Section name
sSeperateChar (String)
Section titled “sSeperateChar (String)”Char between each section-header
bReturnAsArray (Boolean)
Section titled “bReturnAsArray (Boolean)”Section-list must be returned in array
bMustExist (Boolean)
Section titled “bMustExist (Boolean)”File must exist
Return value
Section titled “Return value”If bReturnAsArray is true the list of entries will be returned in gaValue otherwise the list will be returned in gsValue separated by sSeperateChar
Example
Section titled “Example”If bStatus Then bStatus = Ini_GetAllSectionVariables("C:\CapaInstaller.ini", "SectionName", "|", True, True)If bStatus Then For index = LBound(gaValue) To UBound(gaValue) bStatus = Job_WriteLog("Custom", "Index #" & index & ": " & gaValue(index), bStatus, False) NextEnd IfRelated functions
Section titled “Related functions”Ini_DeleteSection Ini_GetAllSections Constants Package Property Variables