Rhino.Tools.Shell.ConsoleTextArea.InsertUpdate C# (CSharp) Method

InsertUpdate() public method

public InsertUpdate ( DocumentEvent e ) : void
e DocumentEvent
return void
		public virtual void InsertUpdate(DocumentEvent e)
		{
			lock (this)
			{
				int len = e.GetLength();
				int off = e.GetOffset();
				if (outputMark > off)
				{
					outputMark += len;
				}
			}
		}