Returns true if the specified parameter, attribute, multi-choice value or dictionary cell is set, otherwise false. If no matching parameter, attribute, multi-choice value or dictionary is found false is returned.
Overloads
bool IsSet(string name; [string dictKey]; [string dictColNameOrIndex])
bool IsSet(Parameter parameter)
bool IsSet(Attribute attribute)
bool IsSet(MultiChoiceValue multiChoiceValue)
| name | The name of a parameter, attribute, multi-choice value or dictionary. | 
| dictKey | Optionally the key of a dictionary row. | 
| dictColNameOrIndex | Optionally the name or index of a dictionary column. | 
Example
IsSet("Model")
Returns true if a parameter or attribute with the name "Model" is set, otherwise false.
