Version: 5.6
public static bool DropdownButton (GUIContent content, FocusType focusType, params GUILayoutOption[] options);
public static bool DropdownButton (GUIContent content, FocusType focusType, GUIStyle style, params GUILayoutOption[] options);

Parámetros

content Text, image and tooltip for this button.
focusType Whether the button should be selectable by keyboard or not.
style Optional style to use.
options An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Valor de retorno

bool true when the user clicks the button.

Descripción

Make a button that reacts to mouse down, for displaying your own dropdown content.

This control returns true on mouse down when clicked, unlike regular buttons that return true on mouse up.

This can be used for buttons that should open a GenericMenu or your own custom EditorWindow in dropdown form.

When used with a GenericMenu, use GenericMenu.Dropdown and pass the same rect to the method as was used for the button, which you can obtain using GUILayoutUtility.GetLastRect.

When used with a custom EditorWindow, use EditorWindow.ShowAsDropdown and pass the same rect to the method as was used for the button, which you can obtain using GUILayoutUtility.GetLastRect.