According to the Offset animation documentation:
https://learn.microsoft.com/en-us/windows/uwpcommunitytoolkit/animations/offset
You simply set an Offset value to your element and it will slide to the target value:
<interactivity:Interaction.Behaviors>
<behaviors:Offset x:Name="OffsetBehavior"
OffsetX="25.0"
OffsetY="25.0"
Duration="2500"
Delay="250"
AutomaticallyStart="True"/>
</interactivity:Interaction.Behaviors>
However, there's no concept of From and To, therefore how do you go about having an element slide into view (ex: Offset.X would be -100 to 0) ??? We can only set Value, which represents the "To" in a composition animation.