apps
latest
false
- Getting Started
- Demo apps
- How To
- Access the production URL of an app
- Build a Mobile-Friendly App
- Embed Apps
- Embed Maps
- Set External Context
- Use arrays to populate Dropdown, Multiselect dropdown, and Radio Button controls
- Use DataTable with Table and Edit Grid controls
- Use Input Mask
- Notifications
- Using VB Expressions
- Designing your App
- Events and Rules
- Rule: If-Then-Else
- Rule: Open a Page
- Rule: Open URL
- Rule: Close Pop-Over/Bottom Sheet
- Rule: Show Message
- Rule: Show/Hide Spinner
- Rule: Set Value
- Rule: Start Process
- Rule: Reset Values
- Rule: Upload File to Storage Bucket
- Rule: Download File From Storage Bucket
- Rule: Create Entity Record
- Rule: Update Entity Record
- Rule: Delete Entity Record
- Rule: Add to Queue
- Rule: Trigger workflow
- Rule: Submit Action
- Leveraging RPA in your App
- Leveraging Entities in Your App
- Leveraging Queues in Your App
- Leveraging Media in your app
- Leveraging Actions in your app
- Application Lifecycle Management (ALM)
- UiPath® First-Party Apps
- Basic Troubleshooting Guide
Use arrays to populate Dropdown, Multiselect dropdown, and Radio Button controls
Apps User Guide
Last updated Jun 17, 2024
Use arrays to populate Dropdown, Multiselect dropdown, and Radio Button controls
You can use arrays to populate the options of Dropdown, Multiselect dropdown, and Radio Button controls, by referencing them in the List source field of the control:
-
Select the control and go to General properties tab.
-
Open the expression editor for the List source field.
-
Write one the following expressions:
New List(Of String) From {"Value1", "Value2", "Value3"}.ToListSource()
New List(Of String) From {"Value1", "Value2", "Value3"}.ToListSource(){"v1", "v2", "v3"}.ToListSource()
{"v1", "v2", "v3"}.ToListSource()