Mono.TextEditor.TextEditorData.OnSelectionChanging C# (CSharp) Method

OnSelectionChanging() protected method

protected OnSelectionChanging ( EventArgs e ) : void
e System.EventArgs
return void
		protected virtual void OnSelectionChanging (EventArgs e)
		{
			var handler = SelectionChanging;
			if (handler != null)
				handler (this, e);
		}