Skip to content

PARAMETERS

Info

New in Atfinity 17.

In the actions of a manual instance action, you can access the values a user entered for its input parameters with the constant PARAMETERS.

Write PARAMETERS. followed by the key of the input parameter. For an input parameter with the key first_name, the value is available as:

PARAMETERS.first_name

Warning

PARAMETERS is only available in the actions of a manual instance action. Only the keys of that action's own input parameters can be referenced; any other key is reported as a configuration inconsistency.

Example

In a manual instance action with the input parameters first_name and last_name, an Assign Values action could copy the entered values onto the instance:

self.first_name := PARAMETERS.first_name
self.last_name := PARAMETERS.last_name