Exemplo n.º 1
0
 static void OnSelectionChanging(TextEditorDataEventArgs args)
 {
     if (SelectionChanging != null)
     {
         SelectionChanging(null, args);
     }
 }
Exemplo n.º 2
0
 void HandleSelectionChanging(object sender, TextEditorDataEventArgs args)
 {
     if (args.TextEditorData != this)
     {
         this.ClearSelection();
     }
 }
Exemplo n.º 3
0
		static void OnSelectionChanging (TextEditorDataEventArgs args)
		{
			if (SelectionChanging != null)
				SelectionChanging (null, args);
		}
Exemplo n.º 4
0
		void HandleSelectionChanging (object sender, TextEditorDataEventArgs args)
		{
			if (args.TextEditorData != this)
				this.ClearSelection ();
		}