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