System.ScrollViewExtensions.ScrollToEnd C# (CSharp) Méthode

ScrollToEnd() public static méthode

public static ScrollToEnd ( NestedScrollView scrollView ) : void
scrollView NestedScrollView
Résultat void
        public static void ScrollToEnd(this NestedScrollView scrollView)
        {
            scrollView.Post(() =>
            {
                scrollView.FullScroll((int)FocusSearchDirection.Down);
            });
        }
    }
ScrollViewExtensions