Skip to content

Commit 412b60f

Browse files
committed
updates
1 parent 11f2bc4 commit 412b60f

20 files changed

+77
-68
lines changed

powerapps-docs/maker/TOC.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,8 @@
508508
href: ./canvas-apps/controls/modern-controls/limitations-modern-controls.md
509509
- name: Button
510510
href: ./canvas-apps/controls/modern-controls/modern-control-button.md
511+
- name: Combobox
512+
href: ./canvas-apps/controls/control-combo-box.md
511513
- name: Link
512514
href: ./canvas-apps/controls/modern-controls/modern-control-link.md
513515
- name: Progress bar
@@ -530,6 +532,8 @@
530532
href: ./canvas-apps/controls/modern-controls/modern-controls-header.md
531533
- name: Info button (preview)
532534
href: ./canvas-apps/controls/modern-controls/modern-control-info-button.md
535+
- name: Number input (preview)
536+
href: ./canvas/modern-controls/modern-control-number-input.md
533537
- name: Radio group (preview)
534538
href: ./canvas-apps/controls/modern-controls/modern-controls-radio-group.md
535539
- name: Spinner (preview)
@@ -540,6 +544,8 @@
540544
href: ./canvas-apps/controls/modern-controls/modern-control-text.md
541545
- name: Text input (preview)
542546
href: ./canvas-apps/controls/modern-controls/modern-control-text-input.md
547+
- name: Toggle
548+
href: ./canvas-apps/controls/modern-controls/modern-control-toggle.md
543549
- name: Control reference
544550
items:
545551
- name: List of controls and properties

powerapps-docs/maker/canvas-apps/controls/modern-controls/modern-control-button.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Button modern control in Power Apps
3-
description: Learn about the details, properties and examples of the button modern control in Power Apps.
3+
description: Learn about the details, properties, and examples of the button modern control in Power Apps.
44
author: yogeshgupta698
55

66
ms.topic: reference
@@ -24,7 +24,7 @@ contributors:
2424
A control that the user can select to interact with the app.
2525

2626
## Description
27-
With the modern button you can set a button to be primary or secondary. Configure the **[OnSelect](../properties-core.md)** property of a **Button** control to run one or more formulas when the user selects the control. As a design pattern, we recommend always placing the primary button on the left, the secondary button to the right of it. Key properties for this control are OnSelect and Text.
27+
Use the modern button to set a button to be primary or secondary. Configure the **[OnSelect](../properties-core.md)** property of a **Button** control to run one or more formulas when the user selects the control. As a design pattern, we recommend always placing the primary button on the left, the secondary button to the right of it. The key properties for this control are **OnSelect** and **Text**.
2828

2929
## General
3030

@@ -65,7 +65,7 @@ With the modern button you can set a button to be primary or secondary. Configur
6565

6666
**FontColor** - The color of text in a control.
6767

68-
**FontWeight** - The weight of the text in a control: Bold, Lighter, Normal, or Semibold.
68+
**FontWeight** - The weight of the text in a control: **Bold**, **Lighter**, **Normal**, or **Semibold**.
6969

7070
**FontItalic** - Whether the text in a control is italic.
7171

@@ -77,7 +77,7 @@ With the modern button you can set a button to be primary or secondary. Configur
7777

7878
**AcceptsFocus** - Determines whether the control can receive focus when the user navigates through the app using the keyboard.
7979

80-
**[OnSelect](../properties-core.md)** – Actions to perform when the user taps or clicks a control.
80+
**[OnSelect](../properties-core.md)** – Actions to perform when the user selects a control.
8181

8282

8383

powerapps-docs/maker/canvas-apps/controls/modern-controls/modern-control-checkbox.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Checkbox modern control in Power Apps
3-
description: Learn about the details, properties and examples of the checkbox modern control in Power Apps.
3+
description: Learn about the details, properties, and examples of the checkbox modern control in Power Apps.
44
author: yogeshgupta698
55

66
ms.topic: reference
@@ -26,7 +26,7 @@ contributors:
2626
A control that the user can select or clear to set its value to **true** or **false**.
2727

2828
## Description
29-
The user can specify a Boolean value by using this familiar control, which has been used in GUIs for decades. Key properties for this control are Checked, Label, OnCheck, and OnUncheck.
29+
The user can specify a Boolean value by using this familiar control that is used in Graphical User Interface (GUI) for decades. The key properties for this control are **Checked**, **Label**, **OnCheck**, and **OnUncheck**.
3030

3131
## General
3232

@@ -75,7 +75,7 @@ The user can specify a Boolean value by using this familiar control, which has b
7575

7676
**OnCheck** - Actions to perform when the user checks the control.
7777

78-
**OnSelect** - Actions to perform when the user taps or clicks a control.
78+
**OnSelect** - Actions to perform when the user selects a control.
7979

8080
**OnUncheck** - Actions to perform when the user unchecks the control.
8181

powerapps-docs/maker/canvas-apps/controls/modern-controls/modern-control-combobox.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Combobox modern control in Power Apps
3-
description: Learn about the details, properties and examples of the combobox modern control in Power Apps.
3+
description: Learn about the details, properties, and examples of the combobox modern control in Power Apps.
44
author: noazarur-microsoft
55

66
ms.topic: reference
@@ -20,11 +20,11 @@ contributors:
2020
---
2121
# Combobox modern control in Power Apps
2222

23-
A control that allows users to make selections from provided choices. Supports search and multiple selections.
23+
A control that allows users to make selections from provided choices and supports search and multiple selections.
2424

2525
## Description
2626

27-
A **Combobox** control allows you to search for items you will select. Single or multi-select mode is configured via the SelectMultiple property. Key properties for this control are Items, DefaultSelectedItems, SelectedItems, SelectMultiple, and IsSearchable.
27+
A **Combobox** control allows you to search for items that you select. Single or multi-select mode is configured via the SelectMultiple property. Key properties for this control are Items, DefaultSelectedItems, SelectedItems, SelectMultiple, and IsSearchable.
2828

2929
## General
3030

@@ -78,7 +78,7 @@ A **Combobox** control allows you to search for items you will select. Single or
7878

7979
**MultiValueDelimiter** - If a user selects multiple items, you can select what delimiter is added in-between items such as a comma.
8080

81-
**ValidationState** - The control has two states: “Error and None. When the error state is selected the control’s border is highlighted in red.
81+
**ValidationState** - The control has two states, which are **Error** and **None**. When the error state is selected the control’s border is highlighted in red.
8282

8383
**DefaultSelectedItems** - The initial value of a control before the user specifies a different value.
8484

powerapps-docs/maker/canvas-apps/controls/modern-controls/modern-control-dropdown.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Drop down modern control in Power Apps
3-
description: Learn about the details, properties and examples of the dropdown modern control in Power Apps.
3+
description: Learn about the details, properties, and examples of the dropdown modern control in Power Apps.
44
author: yogeshgupta698
55

66
ms.topic: reference
@@ -26,7 +26,7 @@ contributors:
2626
Select a value from the list of items.
2727

2828
## Description
29-
A **Drop down** control conserves screen real estate, especially when the list contains a large number of choices. The control takes up only one line unless the user selects the chevron to reveal more choices. Key properties for this control are Items, ValidationState, and OnChange.
29+
A **Drop down** control conserves screen real estate, especially when the list contains a large number of choices. The control takes up only one line unless the user selects the chevron to reveal more choices. The key properties for this control are **Items**, **ValidationState**, and **OnChange**.
3030

3131
## General
3232

@@ -63,6 +63,6 @@ A **Drop down** control conserves screen real estate, especially when the list c
6363

6464
**OnChange** – Actions to perform when the user changes the value of a control.
6565

66-
**ValidationState** - The control has two states: “Error and None. When the error state is selected the control’s border is highlighted in red.
66+
**ValidationState** - The control has two states, which are **Error** and **None**. When the error state is selected the control’s border is highlighted in red.
6767

6868
**DefaultSelectedItems** - The initial value of a control before the user specifies a different value.

powerapps-docs/maker/canvas-apps/controls/modern-controls/modern-control-info-button.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ contributors:
2626
Use **Info button** control to provide additional information to users.
2727

2828
## Description
29-
**Info button** control enables developers to provide help and guidance to app users in an accessible way. Key properties for this control are Content, Icon Size, and OnSelect.
29+
**Info button** control enables developers to provide help and guidance to app users in an accessible way. The key properties for this control are **Content**, **Icon Siz**e, and **OnSelec**.
3030

3131
## General
3232

@@ -58,7 +58,7 @@ Use **Info button** control to provide additional information to users.
5858

5959
**FontColor** - The color of text in a control.
6060

61-
**FontWeight** - The weight of the text in a control: Bold, Lighter, Normal, or Semibold.
61+
**FontWeight** - The weight of the text in a control: **Bold**, **Lighter**, **Normal**, or **Semibold**.
6262

6363
**FontItalic** - Whether the text in a control is italic.
6464

@@ -72,7 +72,7 @@ Use **Info button** control to provide additional information to users.
7272

7373
**AcceptsFocus** - Determines whether the control can receive focus when the user navigates through the app using the keyboard.
7474

75-
**OnSelect** - Actions to perform when the user taps or clicks a control.
75+
**OnSelect** - Actions to perform when the user selects a control.
7676

7777

7878

powerapps-docs/maker/canvas-apps/controls/modern-controls/modern-control-link.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Link modern control in Power Apps
3-
description: Learn about the details, properties and examples of the link modern control in Power Apps.
3+
description: Learn about the details, properties, and examples of the link modern control in Power Apps.
44
author: yogeshgupta698
55

66
ms.topic: reference
@@ -24,9 +24,10 @@ contributors:
2424
Open hyperlinks in new tab.
2525

2626
## Description
27-
Use **Link** control to provide links that can be defined with accessibility compliance. The link opens in a new tab on your device. Key properties for this control are Text and URL.
27+
Use **Link** control to provide links that can be defined with accessibility compliance. The link opens in a new tab on your device. The key properties for this control are **Text** and **URL**.
2828

2929
## General
30+
3031
**Text** – The text to be displayed on the app with link enabled.
3132

3233
**URL** - URL for the users to navigate through the link.
@@ -43,7 +44,7 @@ Use **Link** control to provide links that can be defined with accessibility com
4344

4445
## Size and position
4546

46-
**Align** - The ___location of text in relation to the horizontal center of its control. The options are updated to Start, End, Center and Justify to better accomodate left to right languages.
47+
**Align** - The ___location of text in relation to the horizontal center of its control. The options are updated to **Start**, **End**, **Center**, and **Justify** to better accommodate left to right languages.
4748

4849
**VerticalAlign** - – The ___location of text on a control in relation to the vertical center of that control.
4950

powerapps-docs/maker/canvas-apps/controls/modern-controls/modern-control-number-input.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Number Input modern control in Power Apps
3-
description: Learn about the details, properties and examples of the number input modern control in Power Apps.
3+
description: Learn about the details, properties, and examples of the number input modern control in Power Apps.
44
author: noazarur-microsoft
55

66
ms.topic: reference
@@ -64,13 +64,13 @@ Makers can add a number input control that can be used to type in or use the arr
6464

6565
**FontSize** - The font size of the text that appears on a control. If the value is null or zero, then the font size is driven by selected Fluent theme.
6666

67-
**Align** - The ___location of text in relation to the horizontal center of its control. The options are updated to Start, End, Center and Justify to better accommodate left to right languages.
67+
**Align** - The ___location of text in relation to the horizontal center of its control. The options are updated to **Start**, **End**, **Center, and **Justify** to better accommodate left to right languages.
6868

6969
## Additional properties
7070

71-
**DelayOutput** - When set to true, user input is registered after half a second delay. Useful for delaying expensive operations until user completes inputting text (i.e. for filtering when input is used in other formulas).
71+
**DelayOutput** - When set to true, user input is registered after half a second delay. Useful for delaying expensive operations until user completes inputting text such as when filtering when input is used in other formulas.
7272

7373
**OnChange** – Actions to perform when the user changes the value of a control.
7474

75-
**ValidationState** - The control has two states: “Error and None. When the error state is selected the date picker border is highlighted in red.
75+
**ValidationState** - The control has two states, which are **Error** and **None**. When the error state is selected the date picker border is highlighted in red.
7676

powerapps-docs/maker/canvas-apps/controls/modern-controls/modern-control-progress-bar.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ contributors:
2424
Displays the progress, can be configured as determinate showcasing exact progress or indeterminate for ongoing progress.
2525

2626
## Description
27-
The progress bar can be configured to show various states of progress in the apps. This versatile control can be used to inform users on their progress as they work on the app or can be used to show loading scenarios. Key properties for this control are Value, Max, and Indeterminate.
27+
The progress bar can be configured to show various states of progress in the apps. This versatile control can be used to inform users on their progress as they work on the app or can be used to show loading scenarios. The key properties for this control are **Value**, **Max**, and **Indeterminate**.
2828

2929
## General
3030

3131
**Value** – Number between 0 and 'max', which specifies how much of the task is completed. Only applicable for determinate state.
3232

33-
**Max** - The maximum value, which indicates the task is complete. The ProgressBar bar is full when value equals max. This is useful for instances where you want to show capacity, or how much of a total has been uploaded or downloaded.
33+
**Max** - The maximum value, which indicates the task is complete. The ProgressBar bar is full when value equals max. This is useful when you want to show capacity or how much of the total is uploaded or downloaded.
3434

3535
**AccessibleLabel** – Label for screen readers.
3636

3737
**Visible** - Whether a control appears or is hidden.
3838

3939
## Behavior
4040

41-
**Indeterminate** – Set the bar to determinate or indeterminate. In the indeterminate state the value property and max property are not honored.
41+
**Indeterminate** – Set the bar to determinate or indeterminate. In the indeterminate state the value property and max property aren't honored.
4242

4343
## Size and position
4444

powerapps-docs/maker/canvas-apps/controls/modern-controls/modern-control-slider.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ contributors:
2121
A control with which the user can specify a value by dragging a handle.
2222

2323
## Description
24-
The user can indicate a value, between a minimum and a maximum value that you specify, by dragging the handle of a slider left-right or up-down, depending on the direction that you choose. Key properties for this control are OnChange, Value, Min, and Max.
24+
25+
The user can indicate a value, between a minimum and a maximum value that you specify, by dragging the handle of a slider left-right or up-down, depending on the direction that you choose. The key properties for this control are **OnChange**, **Value**, **Min**, and **Max**.
2526

2627
## General
2728

0 commit comments

Comments
 (0)