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.

EditorGUIUtility.CommandEvent

static function CommandEvent(commandName: string): Event;
static Event CommandEvent(string commandName);
static def CommandEvent(commandName as string) as Event

Description

Creates an event.

	var win : EditorWindow;

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