Version: 2020.1
언어: 한국어
public string OnGUI (string text, params GUILayoutOption[] options);

파라미터

text Text string to display in the search field.
options An optional list of layout options that specify extra layout properties.
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

반환

string The text entered in the search field. The original input string is returned instead if the search field text was not changed.

설명

This function displays the search field with the default 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 OnGUI (Rect rect, string text);

파라미터

rect Rectangle to use for the search field.
text Text string to display in the search field.

반환

string The text entered in the search field. The original input string is returned instead if the search field text was not changed.

설명

This function displays the search field with the default UI style in the given Rect.


public string OnGUI (Rect rect, string text, GUIStyle style, GUIStyle cancelButtonStyle, GUIStyle emptyCancelButtonStyle);

파라미터

rect Rectangle to use for the search field.
text Text string to display in the search field.
style The text field style.
cancelButtonStyle The cancel button style used when there is text in the search field.
emptyCancelButtonStyle The cancel button style used when there is no text in the search field.

반환

string The text entered in the SearchField. The original input string is returned instead if the search field text was not changed.

설명

This function displays a search text field with the given Rect and UI style parameters.

Use this function to customize the UI style of the search text field. You must set cancelButtonStyle.fixedWidth to a suitable and desired width as this affects the placement of the close button to the right of the search text field.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961