How can I help you?
Sliding Direction
17 Jan 20251 minute to read
The NavigationDirection property specifies the direction in which items should be navigated in Rotator control.
Horizontal
Items can be navigated in horizontal direction.
rotator.NavigationDirection = SFRotatorNavigationDirection.Horizontal;Vertical
Items can be navigated in vertical direction.
rotator.NavigationDirection = SFRotatorNavigationDirection.Vertical;LeftToRight
Items can be navigated from Left to Right only.
rotator.NavigationDirection = SFRotatorNavigationDirection.LeftToRight;RightToLeft
Items can be navigated from Right to Left only.
rotator.NavigationDirection = SFRotatorNavigationDirection.RightToLeft;TopToBottom
Items can be navigated from Top to Bottom only.
rotator.NavigationDirection = SFRotatorNavigationDirection.TopToBottom;BottomToTop
Items can be navigated from Bottom to Top only.
rotator.NavigationDirection = SFRotatorNavigationDirection.BottomToTop;