Mono.TextEditor.TextEditorData.OnSelectionChanging C# (CSharp) 메소드

OnSelectionChanging() 보호된 메소드

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