Hi @Radhika123 ,
The X property has a numerical value which corresponds with the position of the top left of the control on the X-axis of it's context.
For instance, if you have a label in a screen with its' X property set to 0, this will make the lable show up all the way on the left. When raising the value to, let's say 200, it will move 200px to the right.ű
If you enter a formula for the X property, you can make this dynamic. Let's say you have 3 labels (LeftLabel, MiddleLabel and RightLabel) next to each other and you the visible labels to line up to the left when any of them is made invisible:
1. set the X property of MiddleLabel to:
LeftLabel.X + If(LeftLabel.Visible,LeftLabel.Width,0)
2. set the X property of RightLabel to:
MiddleLabel.X + If(MiddleLabel.Visible,MiddleLabel.Width,0)
Of course you can play around with this a bit more to include more controls or the add padding between the controls.