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