Skip to content

Instantly share code, notes, and snippets.

@ScottLilly
Created July 6, 2014 13:42
Embed
What would you like to do?
Lesson 19.1 - Scroll to the bottom of a rich text box
private void ScrollToBottomOfMessages()
{
rtbMessages.SelectionStart = rtbMessages.Text.Length;
rtbMessages.ScrollToCaret();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment