Esempio n. 1
0
        public void ReprintAllText()
        {
            textPrinter.ClearText();

            foreach (ChatBufferItem item in textBuffer)
            {
                ProcessBufferItem(item, false);
            }
        }
Esempio n. 2
0
 public void ReprintAllText()
 {
     textPrinter.ClearText();
     PrintLastLog();
     foreach (object obj in textBuffer)
     {
         ProcessIM(obj);
     }
 }
Esempio n. 3
0
 /// <summary>
 /// Instruct the TextPrinter to clear the contents of the window
 /// </summary>
 public void ClearAllText()
 {
     textPrinter.ClearText();
 }