diff --git a/content/en/docs/2025.3/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md b/content/en/docs/2025.3/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md index e1d8e2409..1ce8f775d 100644 --- a/content/en/docs/2025.3/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md +++ b/content/en/docs/2025.3/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md @@ -7,96 +7,114 @@ weight: 100 # {{% param title %}} -{{< workinprogress >}} - ## Summary -TODO +The Variable Editor is used to reference any available [variable][What is a Variable?] that is in scope of the [block][What is a Block?] and can be used with most [block properties][What is a Block Property?]. + +{{< figure src="/images/Variable Editor.png" >}} ## Using Variables -TODO: +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. + +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. -- You can use any available variable. -- Available variables are restricted by the scope of the currently selected block -- All available variables will be shown when the variable editor is empty; typing in the editor will filter the available variables with those that match (contains text) on either the variable name or scope +If the editor’s field is empty, all available variables will be displayed in the dropdown. -TODO: Image of using a variable +{{< figure src="/images/Variable Editor - Select Variable.png" >}} -TODO: Image of selecting available variables +Typing characters into the Variable Editor will filter the available variables displayed to those with their name or scope containing a case-insensitive match of the text entered. + +{{< figure src="/images/Variable Editor - Filter Variables.png" >}} ### Scoped Variables -TODO: +Variables are scoped by the workspace that contains the selected block. {{% ctx %}} uses the principle of inherited scope in that variables available for use in the Variable Editor are those created in the current workspace and those inherited from variables scoped to the parent workspace. -- Available variables are scoped by the workspace of the block selected -- Can see variables of the same name that are on accessible scopes -- Link to known limitation. If there are two or more variables with the same name, the variable with the closest scope will be always used even if another is selected +If two or more different variables have the same case-insensitive variable name but belong to different scopes, only the variable with the closest scope to the scope of the selected block will be used or displayed in the Variable Editor dropdown. -TODO: Image of scoped variables (different names and same names) +{{< figure src="/images/Variable Editor - Scoped Variables.png" >}} ### Accessing Variable Properties or Indexes -TODO: +[Properties][Variable Properties] and [indexes][Variable Indexes] of the data type contained in a variable for both Input and Output properties may be expressed in the Variable Editor. -- Properties and indexes can be accessed from the Variable editor -- Translation error shown in messages viewer when using properties or indexes incorrectly for variable that is not dynamic +However, if an index is used with a variable in an output property, the variable must have already been created and instantiated to a suitable data type, otherwise a translation error will be displayed when an attempt to execute the flow is made. -TODO: Image of accessing variable property and index +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. -## Missing Variables +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. + +{{< figure src="/images/Variable Editor - Variable Properties.png">}} -TODO: +## Missing Variables -- If a variable does not exist, then a orange border will be shown around the Variable editor -- It is possible to create a new variable from a missing one using the variable editor +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. -TODO: Image of orange border for missing variables +{{< figure src="/images/Variable Editor - Missing Variable.png" >}} ## Creating Variables -TODO: +If a variable does not already exist, the Variable Editor can be used to create a new variable, scoped to the current workspace. + +To create a new variable, enter the new variable’s name in the Variable Editor. The dropdown will reveal a filtered list of available variables, where the name or scope of variable contains the case-insensitive text entered, plus the option to create a new variable. -- If a variable does not already exist, the variable editor can be used to create a new one at the current scope -- If the variable name is invalid ([C# identifier naming rules][]) then there will be no option to create a new variable +If the text entered does not conform to the variable naming rules ([C# identifier naming rules][]), then the option to create a new variable will not be displayed. -TODO: Image of option to create a new variable +{{< figure src="/images/Variable Editor - Create Variable.png" >}} ## Renaming Variables -TODO: +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. + +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. -- If a variable editor already contains a reference to a variable that exists, typing the name of a non-existent variable will provide the option to rename the previously selected variable (and all references to it within the flow) to the new variable name -- If the variable name is invalid ([C# identifier naming rules][]) then there will be no option to rename the variable -- Renaming a variable does not include any index or method expressions (e.g. renaming to `($)NewVar.ToString()` will rename the selected variable to `($)NewVar`) +If the text entered does not conform to the variable naming rules ([C# identifier naming rules][]), then the option to rename the variable will not be displayed. -TODO: Image of option to rename a variable +Renaming a variable will keep intact any indexes or property references to the object contained in the variable; any changes made to the indexes or property references will not affect the indexes or property references elsewhere in the flow. + +{{< figure src="/images/Variable Editor - Rename Variable.png" >}} ## Remarks ### Known Limitations -TODO: +* 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. -- If there are two or more variables with the same name, the variable with the closest scope will be always used even if another is selected -- Currently, available variables are not restricted based on the type of the variable and if that is valid for the selected property +* 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. ## See Also ### Related Concepts -TODO +* [Blocks][What is a Block?] +* [Block Properties][What is a Block Property?] +* [Variable Scopes][] +* [Variables][What is a Variable?] +* [Workspaces][What is a Workspace?] ### Related Blocks -TODO +* [All Blocks][Blocks] ### Related Data Types -TODO +* [All Data Types][Reference Data Types] ### External Documentation -TODO +* [C# identifier naming rules][] + +[Creating Variables]: {{< ref "#creating-variables" >}} + +[Blocks]: {{< url path="Cortex.Reference.Blocks.MainDoc" >}} +[Reference Data Types]: {{< url path="Cortex.Reference.DataTypes.MainDoc" >}} +[Variable Indexes]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.UsingVariables.Indexes" >}} +[Variable Properties]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.UsingVariables.Properties" >}} +[Variable Scopes]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.VariableScopes.MainDoc" >}} +[What is a Block?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}} +[What is a Block Property?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.BlockProperties.WhatIsABlockProperty.MainDoc" >}} +[What is a Variable?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.WhatIsAVariable.MainDoc" >}} +[What is a Workspace?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Workspaces.WhatIsAWorkspace.MainDoc" >}} [C# identifier naming rules]: {{< url path="MSDocs.CSharp.IdentifierNamingRules" >}} diff --git a/content/en/docs/2025.9/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md b/content/en/docs/2025.9/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md index e1d8e2409..1ce8f775d 100644 --- a/content/en/docs/2025.9/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md +++ b/content/en/docs/2025.9/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md @@ -7,96 +7,114 @@ weight: 100 # {{% param title %}} -{{< workinprogress >}} - ## Summary -TODO +The Variable Editor is used to reference any available [variable][What is a Variable?] that is in scope of the [block][What is a Block?] and can be used with most [block properties][What is a Block Property?]. + +{{< figure src="/images/Variable Editor.png" >}} ## Using Variables -TODO: +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. + +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. -- You can use any available variable. -- Available variables are restricted by the scope of the currently selected block -- All available variables will be shown when the variable editor is empty; typing in the editor will filter the available variables with those that match (contains text) on either the variable name or scope +If the editor’s field is empty, all available variables will be displayed in the dropdown. -TODO: Image of using a variable +{{< figure src="/images/Variable Editor - Select Variable.png" >}} -TODO: Image of selecting available variables +Typing characters into the Variable Editor will filter the available variables displayed to those with their name or scope containing a case-insensitive match of the text entered. + +{{< figure src="/images/Variable Editor - Filter Variables.png" >}} ### Scoped Variables -TODO: +Variables are scoped by the workspace that contains the selected block. {{% ctx %}} uses the principle of inherited scope in that variables available for use in the Variable Editor are those created in the current workspace and those inherited from variables scoped to the parent workspace. -- Available variables are scoped by the workspace of the block selected -- Can see variables of the same name that are on accessible scopes -- Link to known limitation. If there are two or more variables with the same name, the variable with the closest scope will be always used even if another is selected +If two or more different variables have the same case-insensitive variable name but belong to different scopes, only the variable with the closest scope to the scope of the selected block will be used or displayed in the Variable Editor dropdown. -TODO: Image of scoped variables (different names and same names) +{{< figure src="/images/Variable Editor - Scoped Variables.png" >}} ### Accessing Variable Properties or Indexes -TODO: +[Properties][Variable Properties] and [indexes][Variable Indexes] of the data type contained in a variable for both Input and Output properties may be expressed in the Variable Editor. -- Properties and indexes can be accessed from the Variable editor -- Translation error shown in messages viewer when using properties or indexes incorrectly for variable that is not dynamic +However, if an index is used with a variable in an output property, the variable must have already been created and instantiated to a suitable data type, otherwise a translation error will be displayed when an attempt to execute the flow is made. -TODO: Image of accessing variable property and index +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. -## Missing Variables +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. + +{{< figure src="/images/Variable Editor - Variable Properties.png">}} -TODO: +## Missing Variables -- If a variable does not exist, then a orange border will be shown around the Variable editor -- It is possible to create a new variable from a missing one using the variable editor +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. -TODO: Image of orange border for missing variables +{{< figure src="/images/Variable Editor - Missing Variable.png" >}} ## Creating Variables -TODO: +If a variable does not already exist, the Variable Editor can be used to create a new variable, scoped to the current workspace. + +To create a new variable, enter the new variable’s name in the Variable Editor. The dropdown will reveal a filtered list of available variables, where the name or scope of variable contains the case-insensitive text entered, plus the option to create a new variable. -- If a variable does not already exist, the variable editor can be used to create a new one at the current scope -- If the variable name is invalid ([C# identifier naming rules][]) then there will be no option to create a new variable +If the text entered does not conform to the variable naming rules ([C# identifier naming rules][]), then the option to create a new variable will not be displayed. -TODO: Image of option to create a new variable +{{< figure src="/images/Variable Editor - Create Variable.png" >}} ## Renaming Variables -TODO: +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. + +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. -- If a variable editor already contains a reference to a variable that exists, typing the name of a non-existent variable will provide the option to rename the previously selected variable (and all references to it within the flow) to the new variable name -- If the variable name is invalid ([C# identifier naming rules][]) then there will be no option to rename the variable -- Renaming a variable does not include any index or method expressions (e.g. renaming to `($)NewVar.ToString()` will rename the selected variable to `($)NewVar`) +If the text entered does not conform to the variable naming rules ([C# identifier naming rules][]), then the option to rename the variable will not be displayed. -TODO: Image of option to rename a variable +Renaming a variable will keep intact any indexes or property references to the object contained in the variable; any changes made to the indexes or property references will not affect the indexes or property references elsewhere in the flow. + +{{< figure src="/images/Variable Editor - Rename Variable.png" >}} ## Remarks ### Known Limitations -TODO: +* 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. -- If there are two or more variables with the same name, the variable with the closest scope will be always used even if another is selected -- Currently, available variables are not restricted based on the type of the variable and if that is valid for the selected property +* 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. ## See Also ### Related Concepts -TODO +* [Blocks][What is a Block?] +* [Block Properties][What is a Block Property?] +* [Variable Scopes][] +* [Variables][What is a Variable?] +* [Workspaces][What is a Workspace?] ### Related Blocks -TODO +* [All Blocks][Blocks] ### Related Data Types -TODO +* [All Data Types][Reference Data Types] ### External Documentation -TODO +* [C# identifier naming rules][] + +[Creating Variables]: {{< ref "#creating-variables" >}} + +[Blocks]: {{< url path="Cortex.Reference.Blocks.MainDoc" >}} +[Reference Data Types]: {{< url path="Cortex.Reference.DataTypes.MainDoc" >}} +[Variable Indexes]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.UsingVariables.Indexes" >}} +[Variable Properties]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.UsingVariables.Properties" >}} +[Variable Scopes]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.VariableScopes.MainDoc" >}} +[What is a Block?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}} +[What is a Block Property?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.BlockProperties.WhatIsABlockProperty.MainDoc" >}} +[What is a Variable?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.WhatIsAVariable.MainDoc" >}} +[What is a Workspace?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Workspaces.WhatIsAWorkspace.MainDoc" >}} [C# identifier naming rules]: {{< url path="MSDocs.CSharp.IdentifierNamingRules" >}} diff --git a/content/en/docs/2026.3/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md b/content/en/docs/2026.3/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md index e1d8e2409..1ce8f775d 100644 --- a/content/en/docs/2026.3/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md +++ b/content/en/docs/2026.3/Reference/Concepts/fundamentals/blocks/block-properties/property-editors/variable-editor.md @@ -7,96 +7,114 @@ weight: 100 # {{% param title %}} -{{< workinprogress >}} - ## Summary -TODO +The Variable Editor is used to reference any available [variable][What is a Variable?] that is in scope of the [block][What is a Block?] and can be used with most [block properties][What is a Block Property?]. + +{{< figure src="/images/Variable Editor.png" >}} ## Using Variables -TODO: +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. + +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. -- You can use any available variable. -- Available variables are restricted by the scope of the currently selected block -- All available variables will be shown when the variable editor is empty; typing in the editor will filter the available variables with those that match (contains text) on either the variable name or scope +If the editor’s field is empty, all available variables will be displayed in the dropdown. -TODO: Image of using a variable +{{< figure src="/images/Variable Editor - Select Variable.png" >}} -TODO: Image of selecting available variables +Typing characters into the Variable Editor will filter the available variables displayed to those with their name or scope containing a case-insensitive match of the text entered. + +{{< figure src="/images/Variable Editor - Filter Variables.png" >}} ### Scoped Variables -TODO: +Variables are scoped by the workspace that contains the selected block. {{% ctx %}} uses the principle of inherited scope in that variables available for use in the Variable Editor are those created in the current workspace and those inherited from variables scoped to the parent workspace. -- Available variables are scoped by the workspace of the block selected -- Can see variables of the same name that are on accessible scopes -- Link to known limitation. If there are two or more variables with the same name, the variable with the closest scope will be always used even if another is selected +If two or more different variables have the same case-insensitive variable name but belong to different scopes, only the variable with the closest scope to the scope of the selected block will be used or displayed in the Variable Editor dropdown. -TODO: Image of scoped variables (different names and same names) +{{< figure src="/images/Variable Editor - Scoped Variables.png" >}} ### Accessing Variable Properties or Indexes -TODO: +[Properties][Variable Properties] and [indexes][Variable Indexes] of the data type contained in a variable for both Input and Output properties may be expressed in the Variable Editor. -- Properties and indexes can be accessed from the Variable editor -- Translation error shown in messages viewer when using properties or indexes incorrectly for variable that is not dynamic +However, if an index is used with a variable in an output property, the variable must have already been created and instantiated to a suitable data type, otherwise a translation error will be displayed when an attempt to execute the flow is made. -TODO: Image of accessing variable property and index +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. -## Missing Variables +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. + +{{< figure src="/images/Variable Editor - Variable Properties.png">}} -TODO: +## Missing Variables -- If a variable does not exist, then a orange border will be shown around the Variable editor -- It is possible to create a new variable from a missing one using the variable editor +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. -TODO: Image of orange border for missing variables +{{< figure src="/images/Variable Editor - Missing Variable.png" >}} ## Creating Variables -TODO: +If a variable does not already exist, the Variable Editor can be used to create a new variable, scoped to the current workspace. + +To create a new variable, enter the new variable’s name in the Variable Editor. The dropdown will reveal a filtered list of available variables, where the name or scope of variable contains the case-insensitive text entered, plus the option to create a new variable. -- If a variable does not already exist, the variable editor can be used to create a new one at the current scope -- If the variable name is invalid ([C# identifier naming rules][]) then there will be no option to create a new variable +If the text entered does not conform to the variable naming rules ([C# identifier naming rules][]), then the option to create a new variable will not be displayed. -TODO: Image of option to create a new variable +{{< figure src="/images/Variable Editor - Create Variable.png" >}} ## Renaming Variables -TODO: +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. + +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. -- If a variable editor already contains a reference to a variable that exists, typing the name of a non-existent variable will provide the option to rename the previously selected variable (and all references to it within the flow) to the new variable name -- If the variable name is invalid ([C# identifier naming rules][]) then there will be no option to rename the variable -- Renaming a variable does not include any index or method expressions (e.g. renaming to `($)NewVar.ToString()` will rename the selected variable to `($)NewVar`) +If the text entered does not conform to the variable naming rules ([C# identifier naming rules][]), then the option to rename the variable will not be displayed. -TODO: Image of option to rename a variable +Renaming a variable will keep intact any indexes or property references to the object contained in the variable; any changes made to the indexes or property references will not affect the indexes or property references elsewhere in the flow. + +{{< figure src="/images/Variable Editor - Rename Variable.png" >}} ## Remarks ### Known Limitations -TODO: +* 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. -- If there are two or more variables with the same name, the variable with the closest scope will be always used even if another is selected -- Currently, available variables are not restricted based on the type of the variable and if that is valid for the selected property +* 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. ## See Also ### Related Concepts -TODO +* [Blocks][What is a Block?] +* [Block Properties][What is a Block Property?] +* [Variable Scopes][] +* [Variables][What is a Variable?] +* [Workspaces][What is a Workspace?] ### Related Blocks -TODO +* [All Blocks][Blocks] ### Related Data Types -TODO +* [All Data Types][Reference Data Types] ### External Documentation -TODO +* [C# identifier naming rules][] + +[Creating Variables]: {{< ref "#creating-variables" >}} + +[Blocks]: {{< url path="Cortex.Reference.Blocks.MainDoc" >}} +[Reference Data Types]: {{< url path="Cortex.Reference.DataTypes.MainDoc" >}} +[Variable Indexes]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.UsingVariables.Indexes" >}} +[Variable Properties]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.UsingVariables.Properties" >}} +[Variable Scopes]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.VariableScopes.MainDoc" >}} +[What is a Block?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}} +[What is a Block Property?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.BlockProperties.WhatIsABlockProperty.MainDoc" >}} +[What is a Variable?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Variables.WhatIsAVariable.MainDoc" >}} +[What is a Workspace?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Workspaces.WhatIsAWorkspace.MainDoc" >}} [C# identifier naming rules]: {{< url path="MSDocs.CSharp.IdentifierNamingRules" >}} diff --git a/content/static/2025.3/images/Variable Editor - Create Variable.png b/content/static/2025.3/images/Variable Editor - Create Variable.png new file mode 100644 index 000000000..576723ba8 Binary files /dev/null and b/content/static/2025.3/images/Variable Editor - Create Variable.png differ diff --git a/content/static/2025.3/images/Variable Editor - Filter Variables.png b/content/static/2025.3/images/Variable Editor - Filter Variables.png new file mode 100644 index 000000000..15755703e Binary files /dev/null and b/content/static/2025.3/images/Variable Editor - Filter Variables.png differ diff --git a/content/static/2025.3/images/Variable Editor - Missing Variable.png b/content/static/2025.3/images/Variable Editor - Missing Variable.png new file mode 100644 index 000000000..5a0d6e704 Binary files /dev/null and b/content/static/2025.3/images/Variable Editor - Missing Variable.png differ diff --git a/content/static/2025.3/images/Variable Editor - Rename Variable.png b/content/static/2025.3/images/Variable Editor - Rename Variable.png new file mode 100644 index 000000000..2a700369a Binary files /dev/null and b/content/static/2025.3/images/Variable Editor - Rename Variable.png differ diff --git a/content/static/2025.3/images/Variable Editor - Scoped Variables.png b/content/static/2025.3/images/Variable Editor - Scoped Variables.png new file mode 100644 index 000000000..ed87a85e6 Binary files /dev/null and b/content/static/2025.3/images/Variable Editor - Scoped Variables.png differ diff --git a/content/static/2025.3/images/Variable Editor - Select Variable.png b/content/static/2025.3/images/Variable Editor - Select Variable.png new file mode 100644 index 000000000..09a7aef42 Binary files /dev/null and b/content/static/2025.3/images/Variable Editor - Select Variable.png differ diff --git a/content/static/2025.3/images/Variable Editor - Variable Properties.png b/content/static/2025.3/images/Variable Editor - Variable Properties.png new file mode 100644 index 000000000..97c58b96c Binary files /dev/null and b/content/static/2025.3/images/Variable Editor - Variable Properties.png differ diff --git a/content/static/2025.3/images/Variable Editor.png b/content/static/2025.3/images/Variable Editor.png new file mode 100644 index 000000000..49f3db4d8 Binary files /dev/null and b/content/static/2025.3/images/Variable Editor.png differ diff --git a/content/static/2025.9/images/Variable Editor - Create Variable.png b/content/static/2025.9/images/Variable Editor - Create Variable.png new file mode 100644 index 000000000..576723ba8 Binary files /dev/null and b/content/static/2025.9/images/Variable Editor - Create Variable.png differ diff --git a/content/static/2025.9/images/Variable Editor - Filter Variables.png b/content/static/2025.9/images/Variable Editor - Filter Variables.png new file mode 100644 index 000000000..15755703e Binary files /dev/null and b/content/static/2025.9/images/Variable Editor - Filter Variables.png differ diff --git a/content/static/2025.9/images/Variable Editor - Missing Variable.png b/content/static/2025.9/images/Variable Editor - Missing Variable.png new file mode 100644 index 000000000..5a0d6e704 Binary files /dev/null and b/content/static/2025.9/images/Variable Editor - Missing Variable.png differ diff --git a/content/static/2025.9/images/Variable Editor - Rename Variable.png b/content/static/2025.9/images/Variable Editor - Rename Variable.png new file mode 100644 index 000000000..2a700369a Binary files /dev/null and b/content/static/2025.9/images/Variable Editor - Rename Variable.png differ diff --git a/content/static/2025.9/images/Variable Editor - Scoped Variables.png b/content/static/2025.9/images/Variable Editor - Scoped Variables.png new file mode 100644 index 000000000..ed87a85e6 Binary files /dev/null and b/content/static/2025.9/images/Variable Editor - Scoped Variables.png differ diff --git a/content/static/2025.9/images/Variable Editor - Select Variable.png b/content/static/2025.9/images/Variable Editor - Select Variable.png new file mode 100644 index 000000000..09a7aef42 Binary files /dev/null and b/content/static/2025.9/images/Variable Editor - Select Variable.png differ diff --git a/content/static/2025.9/images/Variable Editor - Variable Properties.png b/content/static/2025.9/images/Variable Editor - Variable Properties.png new file mode 100644 index 000000000..97c58b96c Binary files /dev/null and b/content/static/2025.9/images/Variable Editor - Variable Properties.png differ diff --git a/content/static/2025.9/images/Variable Editor.png b/content/static/2025.9/images/Variable Editor.png new file mode 100644 index 000000000..49f3db4d8 Binary files /dev/null and b/content/static/2025.9/images/Variable Editor.png differ diff --git a/content/static/2026.3/images/Variable Editor - Create Variable.png b/content/static/2026.3/images/Variable Editor - Create Variable.png new file mode 100644 index 000000000..576723ba8 Binary files /dev/null and b/content/static/2026.3/images/Variable Editor - Create Variable.png differ diff --git a/content/static/2026.3/images/Variable Editor - Filter Variables.png b/content/static/2026.3/images/Variable Editor - Filter Variables.png new file mode 100644 index 000000000..15755703e Binary files /dev/null and b/content/static/2026.3/images/Variable Editor - Filter Variables.png differ diff --git a/content/static/2026.3/images/Variable Editor - Missing Variable.png b/content/static/2026.3/images/Variable Editor - Missing Variable.png new file mode 100644 index 000000000..5a0d6e704 Binary files /dev/null and b/content/static/2026.3/images/Variable Editor - Missing Variable.png differ diff --git a/content/static/2026.3/images/Variable Editor - Rename Variable.png b/content/static/2026.3/images/Variable Editor - Rename Variable.png new file mode 100644 index 000000000..2a700369a Binary files /dev/null and b/content/static/2026.3/images/Variable Editor - Rename Variable.png differ diff --git a/content/static/2026.3/images/Variable Editor - Scoped Variables.png b/content/static/2026.3/images/Variable Editor - Scoped Variables.png new file mode 100644 index 000000000..ed87a85e6 Binary files /dev/null and b/content/static/2026.3/images/Variable Editor - Scoped Variables.png differ diff --git a/content/static/2026.3/images/Variable Editor - Select Variable.png b/content/static/2026.3/images/Variable Editor - Select Variable.png new file mode 100644 index 000000000..09a7aef42 Binary files /dev/null and b/content/static/2026.3/images/Variable Editor - Select Variable.png differ diff --git a/content/static/2026.3/images/Variable Editor - Variable Properties.png b/content/static/2026.3/images/Variable Editor - Variable Properties.png new file mode 100644 index 000000000..97c58b96c Binary files /dev/null and b/content/static/2026.3/images/Variable Editor - Variable Properties.png differ diff --git a/content/static/2026.3/images/Variable Editor.png b/content/static/2026.3/images/Variable Editor.png new file mode 100644 index 000000000..49f3db4d8 Binary files /dev/null and b/content/static/2026.3/images/Variable Editor.png differ diff --git a/data/urls.toml b/data/urls.toml index f3015cf49..426c38440 100644 --- a/data/urls.toml +++ b/data/urls.toml @@ -2142,6 +2142,8 @@ [Cortex.Reference.Concepts.Fundamentals.Variables.UsingVariables] MainDoc = "/docs/reference/concepts/fundamentals/variables/using-variables/" ExpressionEditor = "/docs/reference/concepts/fundamentals/variables/using-variables/#expression-editor" + Indexes = "/docs/reference/concepts/fundamentals/variables/using-variables/#using-items-in-collections" + Properties = "/docs/reference/concepts/fundamentals/variables/using-variables/#using-properties-of-data-types" VariableEditor = "/docs/reference/concepts/fundamentals/variables/using-variables/#variable-editor" [Cortex.Reference.Concepts.Fundamentals.Variables.VariableScopes] MainDoc = "/docs/reference/concepts/fundamentals/variables/variable-scopes/"