@@ -101,13 +101,13 @@ The **Get Text** activity of UiPath.Core.Activities has the following properties
101101
102102** Continue On Error** of type ** InArgument of Type Boolean**
103103
104- ** Display Name** of type ** String**
104+ ** Display Name** of type ** String** - useless in the context of the framework.
105105
106106** Target** of type ** Target**
107107
108108** Target** has the following properties:
109109
110- - ** Clipping Region** of type ** Region**
110+ - ** Clipping Region** of type ** Region** - useless in the context of the framework.
111111
112112- ** Element** of type ** InArgument of Type UiElement**
113113
@@ -118,19 +118,19 @@ The **Get Text** activity of UiPath.Core.Activities has the following properties
118118- ** WaitForReady** of type ** InArgument of Type WaitForReady**
119119
120120
121- ** Private** of type ** Boolean**
121+ ** Private** of type ** Boolean** - useless in the context of the framework.
122122
123123** Value** of type ** OutArgument**
124124
125125A few of these properties you can see below in code:
126126
127- ```
128- public InArgument<string> SelectorArgument { get; set; }
129- public OutArgument<string> ValueArgument { get; set; }
130- public InArgument<WaitForReady> WaitForReadyArgument { get; set; }
131- public InArgument<int> TimeoutArgument { get; set; }
132- public InArgument<bool> ContineOnErrorArgument { get; set; }
133- ```
127+ ``` C#
128+ public InArgument < string > SelectorArgument { get ; set ; }
129+ public OutArgument < string > ValueArgument { get ; set ; }
130+ public InArgument < WaitForReady > WaitForReadyArgument { get ; set ; }
131+ public InArgument < int > TimeoutArgument { get ; set ; }
132+ public InArgument < bool > ContineOnErrorArgument { get ; set ; }
133+ ```
134134
135135To properly contribute to this project you have to create each of the activities found in UiPath.Core.Activities by using the template provided in the snippet above by writing the class inside of the ** UiPathCodeWorks.cs** file
136136
0 commit comments