Library.Dictionary
This property returns the dictionary object for storing custom data as name-value pairs.
SVB Example
Storing and retrieving values in the global dictionary:
Option Base 1
Option Explicit
Sub Main
Dim d As Dictionary
Set d = Application.Dictionary
'Add key-value pair to dictionary.
d.Set("First", 35)
'Retrieve value using key.
'Also provide default value for when key not found.
Dim dVal As Double
dVal = d.Get("First",0)
MsgBox CStr(dVal)
End Sub
Copyright © 2020. Cloud Software Group, Inc. All Rights Reserved.
