You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/2026.3/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ The Variable Editor is used to reference any available [variable][What is a Vari
15
15
16
16
## Using Variables
17
17
18
-
The variables available to the Variable Editor are restricted by the [scope][Variable Scopes] of the currently selected block, which in turn is determined by the [workspace][What is a Workspace?] containing the selected block.
18
+
The variables available to the Variable Editor are restricted by the [scope][Variable Scopes] of the currently selected block, which in turn is determined by the [workspace][What is a Workspace?] containing it.
19
19
20
20
The variable is referenced by either entering the variable name (without the prefix of `($)`) into the Variable Editor, or by selecting an available variable from the dropdown, which is revealed when the Variable Editor is selected.
21
21
@@ -43,13 +43,13 @@ However, if an index is used with a variable in an output property, the variable
43
43
44
44
In addition, for input or output property types, if the data type contained in the variable is not dynamic and the property or index used does not exist, a translation error will be displayed when an attempt to execute the flow is made.
45
45
46
-
Conversely, If the data type contained in the variable is dynamic and the property or index does not exist, translation error will not be displayed but a runtime exception will be raised when the flow is executed.
46
+
Conversely, If the data type contained in the variable is dynamic and the property or index does not exist, a translation error will not be displayed but a runtime exception will be raised when the flow is executed.
If the text entered in the Variable Editor does not match that of a created variable, i.e., the variable does not exist, then a red border with be shown around the Variable Editor. However, it is possible to create a new variable of that name using the Variable Editor.
52
+
If the text entered in the Variable Editor does not match that of a created variable, i.e., the variable does not exist, then a red border with be shown around the Variable Editor. However, it is possible to [create][Creating Variables] a new variable of that name using the Variable Editor.
@@ -65,7 +65,7 @@ If the text entered does not conform to the variable naming rules ([C# identifie
65
65
66
66
## Renaming Variables
67
67
68
-
If the Variable Editor already contains a reference to an existing variable, entering the name for a variable that does not exist will not only offer the option to create a new variable in the dropdown, but it will also display the option to rename the existing variable to that of the name entered.
68
+
If the Variable Editor already contains a reference to an existing variable, entering the name for a variable that does not exist will not only offer the option to [create][Creating Variables] a new variable in the dropdown, but it will also display the option to rename the existing variable to that of the name entered.
69
69
70
70
If an existing variable is renamed in the Variable Editor, then all other references to the existing variable will also be changed to the new variable name throughout the flow.
71
71
@@ -81,7 +81,7 @@ Renaming a variable will keep intact any indexes or property references to the o
81
81
82
82
* When two or more characters are entered into the Variable Editor, causing the dropdown to display a list of available variables, the variable name of the first closest match is sometimes displayed in the Variable Editor, e.g., entering My will cause MyVar to be displayed in the Variable Editor, however, pressing the Tab key will not automatically enter the full variable name. The variable name must either be entered in full, or an option on the dropdown must be selected.
83
83
84
-
* Variable references used elsewhere in the flow as the index to other variables, e.g. the variable Var2 used in the reference Var1[($)Var2], will remain referencing Var2 even when the variable Var2 is renamed in the Variable Editor or Variables Grid.
84
+
* Variable references used elsewhere in the flow as the index to other variables, e.g. the variable Var2 used in the reference `Var1[($)Var2]`, will remain referencing Var2 even when the variable Var2 is renamed in the Variable Editor or Variables Grid.
85
85
86
86
## See Also
87
87
@@ -105,6 +105,8 @@ Renaming a variable will keep intact any indexes or property references to the o
0 commit comments