/// <summary>
		/// Constructor.
		/// </summary>
		/// <param name="LineIndex">The index of the line within its document.</param>
		/// <param name="Txt">The line of text.</param>
		public OutputWindowDocumentLineAddedEventArgs(int LineIndex, OutputWindowDocument.ReadOnlyDocumentLine Txt)
		{
			mLine = Txt;
			mLineIndex = LineIndex;
		}
Пример #2
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="LineIndex">The index of the line within its document.</param>
 /// <param name="Txt">The line of text.</param>
 public OutputWindowDocumentLineAddedEventArgs(int LineIndex, OutputWindowDocument.ReadOnlyDocumentLine Txt)
 {
     mLine      = Txt;
     mLineIndex = LineIndex;
 }