Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

EditorWindow.SendEvent

SendEvent(e: Event): bool;
bool SendEvent(Event e);
def SendEvent(e as Event) as 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"));