UnityEditor.EditorGUILayout.DelayedTextFieldDropDown C# (CSharp) Method

DelayedTextFieldDropDown() static private method

static private DelayedTextFieldDropDown ( GUIContent label, string text, string dropDownElement ) : string
label UnityEngine.GUIContent
text string
dropDownElement string
return string
        internal static string DelayedTextFieldDropDown(GUIContent label, string text, string[] dropDownElement)
        {
            return EditorGUI.DelayedTextFieldDropDown(GUILayoutUtility.GetRect(GUIContent.none, EditorStyles.textFieldDropDownText), label, text, dropDownElement);
        }

Same methods

EditorGUILayout::DelayedTextFieldDropDown ( string text, string dropDownElement ) : string