怎样可以让richTextBox每次增加一行时自动滚动到最后一行?

 

RichTextBox1.Focus() 
RichTextBox1.Select(RichTextBox1.Text.Length, 0) 
RichTextBox1.ScrollToCaret()
HideSelection