Params
The Params panel.
Retrieve a value: params["parameter1"]. Set a value: params["parameter1"] = value.
Example: rpa.project.params.Params
# Notes:
# 1. Before using this object, set the parameters in the Params panel.
# 2. This object always returns parameter values as strings.
# The following example sets the parameter "parameter1" to '123' and assigns this value to the variable arg1.
rpa.project.params["parameter1"] = 123
arg1 = rpa.project.params["parameter1"]该文章对您有帮助吗?