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

OnBeforeUndoOperation() protected method

protected OnBeforeUndoOperation ( EventArgs e ) : void
e EventArgs
return void
		internal protected virtual void OnBeforeUndoOperation (EventArgs e)
		{
			var handler = this.BeforeUndoOperation;
			if (handler != null)
				handler (this, e);
		}
TextDocument