Python3Script Xojo Plugin

Python3Dictionary.Merge Method (console safe)

Merges other dictionary into the current one.

Merge(
   other as Python3Dictionary,
   override as Boolean)

Parameters

other
The dictionary to merge into the current one.
override
If override is true, existing pairs in a will be replaced if a matching key is found in b, otherwise pairs will only be added if there is not a matching key in the current dictionary.

Remarks

This method can throw Python3Exception.

See Also

Python3Dictionary Class