Resolved: UWP TileControl with direction right to left

Question:

By default UWP TileControl allows animate itself from left to right.
It is unclear how to get it working in the opposite direction from right to left?
Thank you!

Answer:

You specify a negative value for the AnimationStep Properties.
<controls:TileControl x:Name="Tile1" AnimationStepX="-1" AnimationStepY="-1" OffsetX="-10" OffsetY="10" IsAnimated="True"
    ScrollViewerContainer="{x:Bind FlipView}" ParallaxSpeedRatio="1.2"/>

If you have better answer, please add a comment about this, thank you!