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

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

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

static function GetWindowWithRect.<T> (rect : Rect, utility : bool, title : string) : T

static function GetWindowWithRect.<T> (rect : Rect, utility : bool, title : string, focus : bool) : 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.