LineEditMenuItems Enumeration |
[Missing <summary> documentation for "T:Godot.LineEdit.MenuItems"]
Namespace: Godot
public enum MenuItems
| Member name | Value | Description | |
|---|---|---|---|
| Cut | 0 | Cuts (copies and clears) the selected text. | |
| Copy | 1 | Copies the selected text. | |
| Paste | 2 | Pastes the clipboard text over the selected text (or at the cursor's position). Non-printable escape characters are automatically stripped from the OS clipboard via String.strip_escapes. | |
| Clear | 3 | Erases the whole LineEdit text. | |
| SelectAll | 4 | Selects the whole LineEdit text. | |
| Undo | 5 | Undoes the previous action. | |
| Redo | 6 | Reverse the last undo action. | |
| Max | 7 | Represents the size of the LineEditMenuItems enum. |