@bkarlekar, Sorry, I didn’t get you what you have told
My requirement is that the order in which I create/initialise input parameters in custom activity in Visual Studio is not being displayed in the tool [UiPath] in the same order. The order gets changed alphabetically !
Not sure and might not aware if there is metadata attribute exist to show them in a sequence expect Alphabetically.
If someone know then lets see.
But for now you can make category to show them like that.
[Category("Input")]
[Description("Enter ID")]
public InArgument<Int> ID { get; set; }
[Category("Input")]
[Description("Enter Name")]
public InArgument<string> Name { get; set; }
[Category("Misc")]
[Description("Enter Age")]
public InArgument<Int> Age { get; set; }
Hi I created a similar custom activity with 3 input parameters like Url,Username and password and one output parameter as List. After installing the package the activity has only one input parameter which is URL and the output parameter… the remaining inputs are missing. any idea on this ?