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

OnRedone() protected method

protected OnRedone ( UndoOperationEventArgs e ) : void
e UndoOperationEventArgs
return void
		internal protected virtual void OnRedone (UndoOperationEventArgs e)
		{
			EventHandler<UndoOperationEventArgs> handler = this.Redone;
			if (handler != null)
				handler (this, e);
		}
		

Usage Example

Example #1
0
			public override void Redo (TextDocument doc)
			{
				foreach (UndoOperation operation in this.operations) {
					operation.Redo (doc);
					doc.OnRedone (new UndoOperationEventArgs (operation));
				}
				OnRedoDone ();
			}
All Usage Examples Of Mono.TextEditor.TextDocument::OnRedone
TextDocument