Dokumentaro de Gambaso
Compilation & Installation
Components
gb
gb.crypt
gb.qt4
Documents
Indekso de Lingvo
Language Overviews
LeguMin
Lexicon
Registro

Settings.Keys (gb.settings)

Property Read Keys As _Settings_Keys

Return a virtual object used for enumerating all the keys used by the setting file.

Example

Obtain all keys from the settings:

Dim sSlot, sKey As String

For Each sSlot In Settings.Keys
  For Each sKey In Settings.Keys[sSlot]
    Print sSlot &/ sKey
  Next
Next