Public Function ItemDetailsAsString (
Key As String,
Optional KeyColWidth As Integer = 20,
Optional ValueColWidth As Integer = 20
) As String
Compile the contents of the element as text.
Used by DictionaryDetailsAsString()
The width in characters of the key column
The width in characters of the value column
Dim obj As New xf_Dictionary
Dim s As String
s = obj.ItemDetailsAsString(Key)
s = obj.ItemDetailsAsString(Key, KeyColWidth, ValueColWidth)
Debug.Print TestDict.ItemDetailsAsString("Lithuania")
Lithuania 1032