Skip to content

Commit 1c6347a

Browse files
authored
Merge branch 'main' into patch-3
2 parents dc60112 + 2a19884 commit 1c6347a

File tree

265 files changed

+7235
-3967
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

265 files changed

+7235
-3967
lines changed

.openpublishing.redirection.json

Lines changed: 124 additions & 49 deletions
Large diffs are not rendered by default.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: Button set control in cards for Power Apps
3+
description: Learn about the properties of the button set control in cards for Power Apps.
4+
author: anuitz
5+
ms.topic: reference
6+
ms.custom:
7+
ms.reviewer: mkaur
8+
ms.date: 03/01/2023
9+
ms.author: anuitz
10+
search.audienceType:
11+
- maker
12+
search.app:
13+
- PowerApps
14+
contributors:
15+
- mduelae
16+
- anuitz
17+
---
18+
19+
# Button set control in cards
20+
21+
A container for a set of button elements.
22+
23+
## Properties
24+
25+
**[Initially visible](control-reference.md#i)** – If false, this item will be removed from the visual tree.
26+
27+
**[Spacing](control-reference.md#s)** – Controls the amount of spacing between this control and the preceding control.
28+
29+
**[Divider](control-reference.md#d)** – When true, draw a separating line at the top of the control.
30+
31+
**[Height](control-reference.md#h)** – Specifies the height of the control.
32+
33+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
34+
35+
**[Show when](control-reference.md#s)** – Conditional layout expression.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: Button control in cards for Power Apps
3+
description: Learn about the properties of the button control in cards for Power Apps.
4+
author: anuitz
5+
ms.topic: reference
6+
ms.custom:
7+
ms.reviewer: mkaur
8+
ms.date: 03/01/2023
9+
ms.author: anuitz
10+
search.audienceType:
11+
- maker
12+
search.app:
13+
- PowerApps
14+
contributors:
15+
- mduelae
16+
- anuitz
17+
---
18+
19+
# Button control in cards
20+
21+
A button control that executes Power Fx on select. This button can be grouped with other buttons using a [button set control](button-set.md).
22+
23+
Learn more about [how to use the button control](../make-a-card/ui-elements/use-buttons.md).
24+
25+
## Properties
26+
27+
**[Type](control-reference.md#t)** – What action the button should take on select - can be Show Screen, Run Power Fx, Open Url, or Toggle Visibility.
28+
29+
**[OnSelect](control-reference.md#o)** - The Power Fx that executes when a user taps or clicks on the button of type 'Run Power Fx'.
30+
31+
**[Screen](control-reference.md#s)** - The screen that is shown below the current card when a user taps or clicks on a button of type 'Show Screen'.
32+
33+
**[Url](control-reference.md#u)** - The url to open when a user taps or clicks on a button of type 'Open Url'.
34+
35+
**[Target Elements](control-reference.md#t)** - The elements to change the visibility of when a user taps or clicks on a button of type 'Toggle Visibility'.
36+
37+
**[Title](control-reference.md#t)** - Label for button or link that represents this button.
38+
39+
**[Style](control-reference.md#s)** - Controls the style of a button, which influences how the button is displayed, spoken, etc.
40+
41+
**[IconUrl](control-reference.md#i)** - Optional icon to be shown on the button in conjunction with the title. Supports data URI in version 1.2+.
42+
43+
**[Associated inputs](control-reference.md#a)** - Controls which inputs are associated with the action.
44+
45+
**[Repeat for every](control-reference.md#r)** - The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
46+
47+
48+
49+
**[Show when](control-reference.md#s)** - Conditional layout expression.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: Check box control in cards for Power Apps
3+
description: Learn about the properties of the check box control in cards for Power Apps.
4+
author: anuitz
5+
ms.topic: reference
6+
ms.custom:
7+
ms.reviewer: mkaur
8+
ms.date: 03/01/2023
9+
ms.author: anuitz
10+
search.audienceType:
11+
- maker
12+
search.app:
13+
- PowerApps
14+
contributors:
15+
- mduelae
16+
- anuitz
17+
---
18+
19+
# Check box control in cards
20+
21+
A checkbox that lets users choose between two options by selecting or clearing.
22+
23+
## Properties
24+
25+
**[Label](control-reference.md#l)** – Label for this input.
26+
27+
**[Title](control-reference.md#t)** – Title for the toggle.
28+
29+
**[Wrap](control-reference.md#w)** – If true, allow text to wrap. Otherwise, text is clipped.
30+
31+
**[Default value](control-reference.md#d)** – The initial selected value. If you want the toggle to be initially on, set this to the value of valueOn's value.
32+
33+
**[Initially visible](control-reference.md#i)** – If false, this item will be removed from the visual tree.
34+
35+
**[Spacing](control-reference.md#s)** – Controls the amount of spacing between this control and the preceding control.
36+
37+
**[Divider](control-reference.md#d)** – When true, draw a separating line at the top of the control.
38+
39+
**[Height](control-reference.md#h)** – Specifies the height of the control.
40+
41+
**[Error message](control-reference.md#e)** – Error message to display when entered input is invalid.
42+
43+
**[Required Field](control-reference.md#r)** – Whether or not this input is required.
44+
45+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
46+
47+
48+
49+
**[Show when](control-reference.md#s)** – Conditional layout expression.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: Column set control in cards for Power Apps
3+
description: Learn about the properties of the column set control in cards for Power Apps.
4+
author: anuitz
5+
ms.topic: reference
6+
ms.custom:
7+
ms.reviewer: mkaur
8+
ms.date: 03/01/2023
9+
ms.author: anuitz
10+
search.audienceType:
11+
- maker
12+
search.app:
13+
- PowerApps
14+
contributors:
15+
- mduelae
16+
- anuitz
17+
---
18+
19+
# Column set control in cards
20+
21+
A collection of columns, each column is a container. These columns allow controls to sit side-by-side.
22+
23+
## Properties
24+
25+
**[Style](control-reference.md#s)** – Determines the style of the control, allowed values: default, emphasis, good, attention, warning, accent.
26+
27+
**[Bleed](control-reference.md#b)** – Determines whether the control should bleed through its parent's padding.
28+
29+
**[Minimum height](control-reference.md#m)** – Specifies the minimum height of the column set in pixels, like "80px".
30+
31+
**[Initially visible](control-reference.md#i)** – If false, this item will be removed from the visual tree.
32+
33+
**[Spacing](control-reference.md#s)** – Controls the amount of spacing between this control and the preceding control.
34+
35+
**[Divider](control-reference.md#d)** – When true, draw a separating line at the top of the control.
36+
37+
**[Horizontal alignment](control-reference.md#h)** – Controls the horizontal alignment of the column set.
38+
39+
**[Height](control-reference.md#h)** – Specifies the height of the control.
40+
41+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
42+
43+
44+
45+
**[Show when](control-reference.md#s)** – Conditional layout expression.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: Column control in cards for Power Apps
3+
description: Learn about the properties of the column control in cards for Power Apps.
4+
author: anuitz
5+
ms.topic: reference
6+
ms.custom:
7+
ms.reviewer: mkaur
8+
ms.date: 03/01/2023
9+
ms.author: anuitz
10+
search.audienceType:
11+
- maker
12+
search.app:
13+
- PowerApps
14+
contributors:
15+
- mduelae
16+
- anuitz
17+
---
18+
19+
# Column control in cards
20+
21+
An individual column which acts as a container for other elements. This column can be arranged side-by-side with other columns using the [column set control](column-set.md).
22+
23+
Add to a column set to create dividers on the page. Empty columns aren't visible. You'll need to put another control (like a text input control) into a column to make it visible.
24+
25+
## Properties
26+
27+
**[Initially visible](control-reference.md#i)** – If false, this item will be removed from the visual tree.
28+
29+
**[Spacing](control-reference.md#s)** – Controls the amount of spacing between this control and the preceding control.
30+
31+
**[Divider](control-reference.md#d)** – When true, draw a separating line at the top of the control.
32+
33+
**[Minimum height](control-reference.md#m)** – Specifies the minimum height of the column set in pixels, like "80px".
34+
35+
**[Content alignment](control-reference.md#c)** – Defines how the content should be aligned vertically within the column.
36+
37+
**[Width](control-reference.md#w)** – Auto, stretch, a number representing relative width of the column in the column group, or in version 1.1 and higher, a specific pixel width, like "50px".
38+
39+
**[Style](control-reference.md#s)** – Style hint for this control, allowed values: default, emphasis, good, attention, warning, accent.
40+
41+
**[Background image](control-reference.md#b)** – Specifies a background image. Acceptable formats are PNG, JPEG, and GIF.
42+
43+
**[Bleed](control-reference.md#b)** – Determines whether the control should bleed through its parent's padding.
44+
45+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
46+
47+
48+
49+
**[Show when](control-reference.md#s)** – Conditional layout expression.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: Container control in cards for Power Apps
3+
description: Learn about the properties of the container control in cards for Power Apps.
4+
author: anuitz
5+
ms.topic: reference
6+
ms.custom:
7+
ms.reviewer: mkaur
8+
ms.date: 03/01/2023
9+
ms.author: anuitz
10+
search.audienceType:
11+
- maker
12+
search.app:
13+
- PowerApps
14+
contributors:
15+
- mduelae
16+
- anuitz
17+
---
18+
19+
# Container control in cards
20+
21+
A standard container, useable with almost any control.
22+
23+
A container takes on the properties of the first control placed inside it. Only controls of the same type can be added to a container.
24+
25+
## Properties
26+
27+
**[Initially visible](control-reference.md#i)** – If false, this item will be removed from the visual tree.
28+
29+
**[Spacing](control-reference.md#s)** – Controls the amount of spacing between this control and the preceding control.
30+
31+
**[Divider](control-reference.md#d)** – When true, draw a separating line at the top of the control.
32+
33+
**[Horizontal alignment](control-reference.md#h)** – Controls the horizontal alignment of the column set.
34+
35+
**[Content alignment](control-reference.md#c)** – Defines how the content should be aligned vertically within the column.
36+
37+
**[Minimum height](control-reference.md#m)** – Specifies the minimum height of the column set in pixels, like "80px".
38+
39+
**[Height](control-reference.md#h)** – Specifies the height of the control.
40+
41+
**[Style](control-reference.md#s)** – Determines the styling of the container, allowed values: default, emphasis, good, attention, warning, accent.
42+
43+
**[Bleed](control-reference.md#b)** – Determines whether the control should bleed through its parent's padding.
44+
45+
**[Background image](control-reference.md#b)** – Specifies a background image. Acceptable formats are PNG, JPEG, and GIF.
46+
47+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
48+
49+
50+
51+
**[Show when](control-reference.md#s)** – Conditional layout expression.

0 commit comments

Comments
 (0)