The ToolVariantChange event is called when the value of an
ExternalDictionary tool instance is changed. Example:
def Handle_System_ToolVariantChanged(Tool,Value):
#
# Tool = VT_BSTR
# Value = VT_BSTR
#
# Tool=Toolname
# Value=Current value
#
if Tool == 'ProductType' :
SetImagePath(Value)
|