Parameter Limitations
There are some limitations when you are working with parameters in the Calculator component.
Parameter names
that contain only letters and numbers (and do not start with a number)
can be typed in directly. Other parameter names must be surrounded by
single quotation marks. If the parameter name contains a single-quote
character, add another quotation mark (e.g., 'Don''t'
).
Elements of multi-dimensional arrays can be referenced as array[i][j]
or as array[i, j]
.
Members of aggregate parameters can be referenced using dot notation:
agg.member
. Aggregates and arrays can be combined:
agg.arr[i, j]
.
When referencing a member of an aggregate where the aggregate parameter
name or the member name contains punctuation, you can put single quotation
marks around the entire name (e.g., 'agg with space.mem with
space'
) or separately around each portion (e.g., 'agg
with space'.'mem with space'
).