/// <summary>
 /// Event handler for when a full line of text has been added to the document.
 /// </summary>
 /// <param name="e">Information about the event.</param>
 protected virtual void OnLineAdded(OutputWindowDocumentLineAddedEventArgs e)
 {
     if (mOnLineAdded != null)
     {
         mOnLineAdded(this, e);
     }
 }
 /// <summary>
 /// Event handler for when a full line of text has been added to the document.
 /// </summary>
 /// <param name="e">Information about the event.</param>
 protected virtual void OnLineAdded(OutputWindowDocumentLineAddedEventArgs e)
 {
     if(mOnLineAdded != null)
     {
         mOnLineAdded(this, e);
     }
 }