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

UndoGroup() public method

public UndoGroup ( TextDocument doc, OperationType operationType ) : System
doc TextDocument
operationType OperationType
return System
			public UndoGroup (TextDocument doc, OperationType operationType)
			{
				if (doc == null)
					throw new ArgumentNullException ("doc");
				doc.BeginAtomicUndo (operationType);
				this.doc = doc;
			}
TextDocument.UndoGroup