Skip to content

Commit 9c66246

Browse files
authored
Merge pull request #9256 from MicrosoftDocs/users/tahoon/accessible-app-structure-nit
Small clarification about expression changes
2 parents d3ddcd4 + 3f363ee commit 9c66246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powerapps-docs/maker/canvas-apps/accessible-apps-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In this example, A appears first in the sequence since it's closest to the top.
4444
> [!NOTE]
4545
> - In **Preview** mode when editing an app, the control order is not updated for performance reasons. The order will be correct when the app is published and run.
4646
> - Control order is not the same as that shown in the [tree view of controls](add-configure-controls.md#add-and-select-a-control) in Power Apps Studio. The tree view sorts controls according to when they were added to the app. It does not affect the order of controls when the app is run.
47-
> - When a control's **X** or **Y** value is set to an expression, the control order is not updated when the expression changes. The order is computed and fixed when the app is saved, using the initial state of the app to evaluate expressions.
47+
> - When a control's **X** or **Y** value is set to an expression, the control order is not updated when the result of the expression changes. The order is computed and fixed when the app is saved, using the initial state of the app to evaluate expressions.
4848
> - If you're changing its position because other controls are being hidden or shown, you can use [auto-layout containers](./build-responsive-apps.md#auto-layout-containers) to manage **X** and **Y** for you.
4949
> - You can also position all controls in a logical way regardless of expression values. For example, if control A should always be below control B and B may be hidden sometimes, set A's **Y** to be `If(B.Visible, B.Y + B.Height, B.Y + 1)`. The addition of 1 ensures that A is always below B, even if B is hidden.
5050

0 commit comments

Comments
 (0)