BonjourServer.UITextViewExtension.ScrollToBottom C# (CSharp) Method

ScrollToBottom() public static method

public static ScrollToBottom ( this textView ) : void
textView this
return void
        public static void ScrollToBottom (this UITextView textView)
        {
            textView.ScrollRangeToVisible (new NSRange (textView.Text.Length - 1, 1));
        }
    }