[C# Custom Activities] Multiselect Enum Argument

Hi All,

I’m building a custom UiPath Library (using Visual Studio not UiPath Studio) and wanted one of the arguments to be multiple-selection control based on my enumerator

That’s currently featured for example in Get Queue Items activity to select desired statuses:
image

So far I was able to create a dropdown list from my enum as per this thread: Dropdown Selection Property of Custom Activity

image
image

Any contribution will be highly appreciated!!

Best Regards,
Filip

2 Likes
 [Flags]
public enum WeekDays
{
    Sunday = 0,
    Monday = 1,
    Tuesday = 2
}
6 Likes

Hi @DeanMauro,

Thank you very much !!

Best regards,
Filip

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.