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

OnTextReplacing() protected method

protected OnTextReplacing ( DocumentChangeEventArgs args ) : void
args DocumentChangeEventArgs
return void
		protected virtual void OnTextReplacing (DocumentChangeEventArgs args)
		{
			if (TextReplacing != null)
				TextReplacing (this, args);
		}
		public event EventHandler<DocumentChangeEventArgs> TextReplacing;
TextDocument