CoreClasses Xojo Plugin

PrefixDictionary.Values Method

Returns all the values in the Dictionary as an array of Variants.

Values() as Variant()

Parameters

Returns

Variant()

Remarks


var d As new EinhugurCollections.PrefixDictionary()
d.Value("66-123") = "123"
d.Value("22-234") = "234"
d.Value("11-123") = "123"

var values() As variant
values = d.Values // after this line v will be an array of variants that are all the values in the dictionary

See Also

PrefixDictionary Class