ICSharpCode.TextEditor.TextEditorControlBase.EndUpdate C# (CSharp) Метод

EndUpdate() публичный Метод

Call this method to 'unlock' the text area. After this call screen update can occur. But no automatical refresh occurs you have to commit the updates in the queue.
public EndUpdate ( ) : void
Результат void
		public virtual void EndUpdate()
		{
			Debug.Assert(updateLevel > 0);
			updateLevel = Math.Max(0, updateLevel - 1);
		}