Rhino.Tools.Shell.ConsoleTextArea.InsertUpdate C# (CSharp) 메소드

InsertUpdate() 공개 메소드

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