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); }
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); }