How can I help you?
How to modify HubTile Image Transition direction in runtime?
4 Feb 20251 minute to read
You can set HubTileSlideTransition property to achieve this.
Property table
| Property | Description |
|---|---|
| SlideTransition | This property sets HubTile image transition direction. |
/// Sets Image transition direction as RightToLeft
this.HubTile1.SlideTransition = TransitionDirection.RightToLeft;
/// Sets Image transition direction as LeftToRight
this.HubTile1.SlideTransition = TransitionDirection.LeftToRight;
/// Sets Image transition direction as TopToBottom
this.HubTile1.SlideTransition = TransitionDirection.TopToBottom;
/// Sets Image transition direction as BottomToTop
this.HubTile1.SlideTransition= TransitionDirection.BottomToTop;‘Sets Image transition direction as RightToLeft
Me.HubTile1.SlideTransition = TransitionDirection.RightToLeft
‘Sets Image transition direction as LeftToRight
Me.HubTile1.SlideTransition = TransitionDirection.LeftToRight
‘Sets Image transition direction as TopToBottom
Me.HubTile1.SlideTransition = TransitionDirection.TopToBottom
‘Sets Image transition direction as BottomToTop
Me.HubTile1.SlideTransition= TransitionDirection.BottomToTop