OnToolbarGUI
This function displays the search field with a toolbar style in the given Rect.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Method
- Namespace: UnityEditor.IMGUI.Controls
- Assembly: UnityEditor.CoreModule
OnToolbarGUI(Rect, string)
This function displays the search field with a toolbar style in the given Rect.
public string OnToolbarGUI(Rect rect, string text)
Parameters
Returns
Type | Description |
|---|---|
| string | The text entered in the search field. The original input string is returned instead if the search field text was not changed. |
OnToolbarGUI(string, GUILayoutOption[])
This function displays the search field with the toolbar UI style and uses the GUILayout class to automatically calculate the position and size of the Rect it is rendered to. Pass an optional list to specify extra layout properties.
public string OnToolbarGUI(string text, params GUILayoutOption[] options)
Parameters
Text string to display in the search field.
An optional list of layout options that specify extra layout properties.
Additional Resources: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.
Additional Resources: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.
Returns
Type | Description |
|---|---|
| string | The text entered in the search field. The original input string is returned instead if the search field text was not changed. |