Mono.TextEditor.TextDocument.OnEndUndo C# (CSharp) Méthode

OnEndUndo() protected méthode

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