Exemplo n.º 1
0
        // RichTextBox

        public static void AppendParagraphAutoScroll(this RichTextBox a, string text)
        {
            a.AppendAutoScroll("\n" + text + "\n");
        }
Exemplo n.º 2
0
 public static void AppendLineAutoScroll(this RichTextBox a, string text)
 {
     a.AppendAutoScroll(text + "\n");
 }