Mono.TextEditor.TextDocument.AtomicUndoOperation.Redo C# (CSharp) Method

Redo() public method

public Redo ( TextDocument doc, bool fireEvent = true ) : void
doc TextDocument
fireEvent bool
return void
			public override void Redo (TextDocument doc, bool fireEvent = true)
			{
				doc.BeginAtomicUndo (operationType);
				try {
					foreach (UndoOperation operation in this.operations) {
						operation.Redo (doc, false);
						doc.OnRedone (new UndoOperationEventArgs (operation));
					}
				} finally {
					doc.EndAtomicUndo ();
				}
				if (fireEvent)
					OnRedoDone ();
			}
		}