Mono.TextEditor.TextEditorData.OnSelectionChanging C# (CSharp) Méthode

OnSelectionChanging() protected méthode

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