SourceClass TextEditState
from egui import TextEditStateclass TextEditState:The text edit state stored between frames.
Attention: You also need to store the updated state.
from egui import TextEditStateclass TextEditState:The text edit state stored between frames.
Attention: You also need to store the updated state.
@property
def cursor(self, /) -> TextCursorState§@cursor.setter
def cursor(self, /, cursor: TextCursorState) -> None§def clear_undoer(self, /) -> None§@staticmethod
def default() -> TextEditState§@staticmethod
def load(ctx: Context, id: Id) -> TextEditState |None§def set_undoer(self, /, undoer: TextEditUndoer) -> None§def store(self, /, ctx: Context, id: Id) -> None§def undoer(self, /) -> TextEditUndoer§