Exemplo n.º 1
0
    public static string TextArea(string name, string text, int maxLength, GUIStyle style, params GUILayoutOption[] options)
    {
        CoreAutoSelect.Pre(name);
        string tmp = EditorGUICommon.ClampLength(EditorGUILayout.TextArea(text, style, options), maxLength);

        CoreAutoSelect.Post(name);
        return(tmp);
    }
Exemplo n.º 2
0
    public static string TextArea(string name, string text, GUIStyle style, params GUILayoutOption[] options)
    {
        CoreAutoSelect.Pre(name);
        string tmp = EditorGUILayout.TextArea(text, style, options);

        CoreAutoSelect.Post(name);
        return(tmp);
    }
Exemplo n.º 3
0
    public static string TextArea(string name, Rect pos, string text)
    {
        CoreAutoSelect.Pre(name);
        string tmp = EditorGUI.TextArea(pos, text);

        CoreAutoSelect.Post(name);
        return(tmp);
    }
Exemplo n.º 4
0
    public static string TextArea(string name, Rect pos, string text, int maxLength, GUIStyle style)
    {
        CoreAutoSelect.Pre(name);
        string tmp = EditorGUICommon.ClampLength(EditorGUI.TextArea(pos, text, style), maxLength);

        CoreAutoSelect.Post(name);
        return(tmp);
    }
Exemplo n.º 5
0
    public static string TextArea(string name, string text, int maxLength, params GUILayoutOption[] options)
    {
        CoreAutoSelect.Pre(name);
        string tmp = GUILayout.TextArea(text, maxLength, options);

        CoreAutoSelect.Post(name);
        return(tmp);
    }
Exemplo n.º 6
0
    public static string TextArea(string name, Rect pos, string text, int maxLength, GUIStyle style)
    {
        CoreAutoSelect.Pre(name);
        string tmp = GUI.TextArea(pos, text, maxLength, style);

        CoreAutoSelect.Post(name);
        return(tmp);
    }