System.ScrollViewExtensions.ScrollToEnd C# (CSharp) 메소드

ScrollToEnd() 공개 정적인 메소드

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