apps
latest
false
important :
For documentation on app projects in Studio Web, refer to the App Projects chapter in the Studio Web documentation: https://docs.uipath.com/studio-web/automation-cloud/latest/user-guide/apps-in-studio-web.
UiPath logo, featuring letters U and I in white

Apps user guide

Last updated Feb 13, 2026

Tabs

General

The tab control lets you divide the information in your app by tabs. The behavior of the tab control differs depending on the selected mode: Static or Dynamic.

Static tabs

When you add the Tab control, it displays three tabs by default (Tab 1, Tab 2, Tab 3). Expanding each tab within the control exposes the following properties:
  • Tab name—The display name of the tab.
  • Page —The Apps page to import within this tab.
  • Hidden- If true, hides the control at runtime.
  • Disabled - If true, disables the control at runtime.
The following properties apply to the entire Tab control.
  • Add new tab—Add new tab to your data by clicking the plus "+" icon.
  • Active tab index—Navigate to a specific tab using this property. The index starts at 0. For example, if you have four consecutive tabs named "Tab1", "Tab2", "Tab3", and "Tab4", then "Tab1" has the index 0, "Tab2" has the index 1, "Tab3" has the index 2, and "Tab4" has the index 3.
  • Hidden—If true, hides the control at runtime.
  • Disabled—If true, disables the control at runtime.

Dynamic tabs

Dynamic tabs are generated at runtime from a list data source. To use this feature, select the Dynamic mode for your tabs. This is useful when the number of tabs you need varies and depends on the items in a list.

You can configure the following properties:

  • List source—The source for the items to be displayed as tabs. Valid data types include arrays of String, Integer, or DateTime, DataTable, or arrays of an Object.
  • Column—When the list source is either of type DataTable or an array of an Object, select the specific column (for DataTable data types) or the specific property (for Object arrays).
  • Page source—The App page to use across all dynamic tabs.
  • Active tab index—Navigate to a specific tab using this property. The index starts at 0. For example, if you have four consecutive tabs named "Tab1", "Tab2", "Tab3", and "Tab4", then "Tab1" has the index 0, "Tab2" has the index 1, "Tab3" has the index 2, and "Tab4" has the index 3.
For example, you can use dynamic tabs with Data Service entities, as follows:
  • The List source property for the dynamic tabs is an entity in Data Service, for example, "Department":
    Fetch(of TPDepartment)(Nothing, Nothing, Nothing, Nothing, New ExpansionFieldOption(){addExpansionFieldOption("CreatedBy", New String(){"Id","Name"}), addExpansionFieldOption("UpdatedBy", New String(){"Id","Name"})})Fetch(of TPDepartment)(Nothing, Nothing, Nothing, Nothing, New ExpansionFieldOption(){addExpansionFieldOption("CreatedBy", New String(){"Id","Name"}), addExpansionFieldOption("UpdatedBy", New String(){"Id","Name"})})
  • The Column property for the dynamic tabs is a field of the selected Data Service entity, for example "Name".
    Note: At runtime, you see as many tabs as the number of records in the selected entity field. The control is limited to displaying 50 records of your entity. If you have more than 50 records, the first 50 are displayed.
  • For Page source, you can set up a page to display a table that updates based on the selected tab.
At runtime, the tabs you see are the records in the Name field of the Department entity. Switching tabs updates the content in the table.
docs image

Events

  • Value changed—Configure what happens when the value is changed.

Style

  • Control Alignment—By default, it is set to Stretch. A different alignment can be set.

    Note: The alignment is dependent on the layout selected for the parent (Vertical vs Horizontal).
  • Style—The style of active and inactive tabs:
    • Default—Tabs are styled as classic browser tabs.
    • Pills—Tabs are rounded on both ends, resembling a pill shape.
    • Tab color—The text color for inactive tabs.
    • Active tab color—The text color for active tabs.
    • Tab background—The background color for inactive pill tabs.
    • Active tab background—The background color for active pill tabs.
    • Large tabs—If selected, tabs are enlarged.
  • Border—The border for the control. You can configure border Thickness, Color, and Radius.

  • Font—The font attributes for the tab text, such as font family, size, or color. By default, the control inherits the font family of the immediate parent container which is indicated by the keyword "Inherited".

  • Margin—The margin of the control. By default, a margin of 4px is set. Top/Bottom and Left/Right margin properties are combined. To set different, separate values for Top, Bottom, Left, and Right margins, select the Link button at the right-hand side of the Margin section.

  • Size—The Width and Height of the control. By default, the size is set to auto. To set minimum or maximum values, select the three dots (...). If the size of the control is smaller than the options, a scroll bar is displayed.

Keyboard Shortcuts

For improved accessibility, you can use the following keyboard shortcuts in the tabs list from the General tab in the configuration panel:

  • Up and Down arrow keys to change the selected tab.
  • Alt+Up arrow key to move the selected tab up.
  • Alt+Down arrow key to move the selected tab down.

Example: Navigating to the next tab

This example shows how to navigate to the next tab of a Tabs control.

  1. In your app, add a Tabs control and make it Static. It automatically created 3 tabs: "Tab 1", Tab 2", and "Tab 3".
  2. Add two new pages and a Button control on each. Name the buttons "Tab 1 -> Next", and "Tab 2 -> Next" respectively.
  3. For "Tab 1", in the Page source field, reference the previously added page which has the "Tab 1 -> Next" button.
  4. For "Tab 2", in the Page source field, reference the previously added page which has the "Tab 2-> Next" button. Your app should look like in the following image:
    docs image
  5. Create a rule for each Button control. The rule instructs the app to navigate to the next tab when you click the button.
  6. Create an app variable of type Int32 and name it "var_tab_index".
  7. Select the Tabs control, and assign the variable var_tab_index to the Active tab index field.
    docs image
  8. Select the main page that contains the Tabs control, navigate to the Events tab, and create a rule for the Loaded event.
    1. Add the Set Value rule, and configure it as follows:
      • Item To Set - var_tab_index
      • Value - 0, which is the index of Tab 1.
  9. Select the page that contains the Button control named "Tab 1-> Next", navigate to the Events tab, and create a rule for the Clicked on event.
    1. Add the Set Value rule, and configure it as follows:
      • Item To Set - var_tab_index
      • Value - 1, which is the index Tab 2.
  10. Select the page that contains the Button control named "Tab 2-> Next", navigate to the Events tab, and create a rule for the Clicked on event.
    1. Add the Set Value rule, and configure it as follows:
      • Item To Set - var_tab_index
      • Value - 2, which is the index Tab 3.
When you preview your app, clicking on the button in "Tab 1" navigates you to "Tab 2", and so on.
docs image

VB properties

VB property

Data type

Description

ActiveTabIndex

Integer

Index of the currently active tab.

ActiveTabName

String

Name of the currently active tab.

Hidden

Boolean

If true, hides the control at runtime.

Disabled

Boolean

If true, disables the control at runtime.
  • General
  • Static tabs
  • Dynamic tabs
  • Events
  • Style
  • Keyboard Shortcuts
  • Example: Navigating to the next tab
  • VB properties

Was this page helpful?

Get The Help You Need
Learning RPA - Automation Courses
UiPath Community Forum
Uipath Logo
Trust and Security
© 2005-2026 UiPath. All rights reserved.