Row、item、exceptionの呼称

UiPath Studio 2023.6.1 Community Editionを利用中の初心者です。

市販のUiPath解説本には書いてなく、UiPathアカデミーのRPAデベロッパー基礎コースでも教えてもらえませんでしたが、UiPathには変数パネルに登録の必要がない特殊な変数が存在することがだんだん分かってきました。
これらは、可変であることから変数のような気がしますが、変数パネルに登録の必要がないため、統一的な別の名称が存在するのではないでしょうか?もし、統一的な呼称があれば教えてください。

事例1:
For Each Rowアクティビティの繰り返しに記入する変数("row"と書くことが多いが可変)
事例2:
For Eachアクティビティの繰り返しに記入する変数("item"と書くことが多いが可変)
事例3:
Try CatchアクティビティのCatch blockの右上に書く変数("exception"と書くことが多いが可変)

事例1
事例2

In UiPath, the variables you are referring to are commonly known as “Implicit Variables” or “Predefined Variables.” These are special variables that are automatically available within specific activity contexts without the need to be explicitly declared in the Variables panel.

UiPath では、参照している変数は一般に「暗黙的変数」または「定義済み変数」として知られています。これらは、[変数] パネルで明示的に宣言しなくても、特定のアクティビティ コンテキスト内で自動的に使用できる特別な変数です。

私が紹介した事例以外で、暗黙的変数が他にあれば教えてください。

並列アクティビティごとにあります

Excelの各行に対して

メールアクティビティごとに
他にもたくさんあります

Will you please elaborate on what you are saying?

こんにちは

変数の一種として考えてよいかと思います。例えばForEachの公式ドキュメントでも以下のような記述になっています。

私が紹介した事例以外で、暗黙的変数が他にあれば教えてください。

例えばTriggeScope

Parallel ForEach

等があると思います。

Implicit variables are used in many other activities like parallel for each, for each file in folder , for each mail has variables like CurrentFile, CurrentMail and item which are not declared in the variable panel by the user. They are predefined in the activity.

@gorby
When there is a collection type(IEnumerable datatype) of variables like list,Array,Dict,Datatable rows and columns cells,Excel,for each email,file in folder…etc .To access the Particular element or particular row/Column/Cell definitely we find of such variable types.

I hope it helps!!