EditorWindow.GetWindowWithRect Manual     Reference     Scripting  
Scripting > Editor Classes > EditorWindow
EditorWindow.GetWindowWithRect

static function GetWindowWithRect (t : System.Type, rect : Rect, utility : boolean = false, title : String = null) : EditorWindow

Parameters

NameDescription
t the type of the window. Must derive from EditorWindow.
rect the position on the screen where a newly created window will show.
utility set this to true, to create a floating utility window, false to create a normal window.
title if GetWindow creates a new window, it will get this title. If this value is null, use the class name as title.

Description

Returns the first EditorWindow of type t which is currently on the screen.

If there is none, creates and shows new window at the position rect and returns the instance of it.


Create an empty 100x150px window at the upper left corner of the screen.

// Create a dockable empty window at the top left corner of the screen
// with 100px width and 150px height

import UnityEditor;

class GetWindowRectEx extends EditorWindow {
@MenuItem("Example/Display simple sized Window")
static function Initialize() {
var window : GetWindowEx =
EditorWindow.GetWindowWithRect(GetWindowRectEx, Rect(0, 0, 100, 150));
}
}

static function GetWindowWithRect.<T> (rect : Rect) : T

static function GetWindowWithRect.<T> (rect : Rect, utility : boolean) : T

static function GetWindowWithRect.<T> (rect : Rect, utility : boolean, title : String) : T

static function GetWindowWithRect.<T> (rect : Rect, utility : boolean, title : String, focus : boolean) : T

Parameters

NameDescription
t the type of the window. Must derive from EditorWindow.
rect the position on the screen where a newly created window will show.
utility set this to true, to create a floating utility window, false to create a normal window.
title if GetWindow creates a new window, it will get this title. If this value is null, use the class name as title.

Description

Returns the first EditorWindow of type t which is currently on the screen.

If there is none, creates and shows new window at the position rect and returns the instance of it.