B4J Programming Press on the image to return to the main documentation page.

jRLIni

Written by Robert W.B. Linn, Pinneberg, Germany

List of types:

jRLIni

jRLIni


Events:

None

Members:


  deleteIniFile As String

  deleteKey (Key As String) As String

  getKey (Key As String, Default As String) As String

  IniMap As Map

  Initialize (Folder As String, IniFile As String) As String

  IsInitialized As Boolean

  putKey (Key As String, Value As String) As String

  readIni As String

  saveIni As String

Members description:

deleteIniFile As String
Delete the ini file
deleteKey (Key As String) As String
Delete an Ini key from the map
getKey (Key As String, Default As String) As String
Get an Ini value from the map for a given key. if not found, use default value.
IniMap As Map
Initialize (Folder As String, IniFile As String) As String
Initializes the object. You can add parameters to this method if needed.
IsInitialized As Boolean
Tests whether the object has been initialized.
putKey (Key As String, Value As String) As String
Put an Ini value for a key into the map
readIni As String
Read the Ini values from the ini file into a global map
saveIni As String
Save the ini values from the map into a file
Top