Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorWindow.SendEvent

public function SendEvent(e: Event): bool;

Description

Sends an Event to a window.

		var win : EditorWindow;
		
		/// Sends a paste event to an EditorWindow, as if Paste was selected from the Edit menu.
		win.SendEvent(EditorGUIUtility.CommandEvent("Paste"));