Mono.TextEditor.TextDocument.OnEndUndo C# (CSharp) Method

OnEndUndo() protected method

protected OnEndUndo ( UndoOperationEventArgs e ) : void
e UndoOperationEventArgs
return void
		protected virtual void OnEndUndo (UndoOperationEventArgs e)
		{
			EventHandler<UndoOperationEventArgs> handler = this.EndUndo;
			if (handler != null)
				handler (this, e);
		}
		
TextDocument