GetVariableValues

This allows the UDO to obtain the names and values of all the design variables for which the UDO quantities are being requested.

UI Access NA
Parameters None
Return Value IDictionary<string,string> of key-value pairs for variables. Both key and value are strings.

 

Python Syntax GetVariableValues()
Python Example
# theDict is C# Dictionary<string, string>
theDict = inData.GetVariableValues()
if theDict != None:
    #varPair is of .Net KeyValuePair type
    for varPair in theDict:   
        varName = varPair.Key #string
        varValue = varPair.Value #string