Can EditorGUILayout be used as a in-game notepad accessible by the user?

Looking to use Unity to create a program that displays an interactive notepad (think Load/Edit/Save text). Is EditorGUILayout a good option for this?

EditorGUILayout is part of UnityEditor namespace hence won’t be accessible outside of editor. You are looking for GUI.TextField instead.