Click or drag to resize

LineEditMenuItems Enumeration

[Missing <summary> documentation for "T:Godot.LineEdit.MenuItems"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum MenuItems
Members
  Member nameValueDescription
Cut0

Cuts (copies and clears) the selected text.

Copy1

Copies the selected text.

Paste2

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.

Clear3

Erases the whole LineEdit text.

SelectAll4

Selects the whole LineEdit text.

Undo5

Undoes the previous action.

Redo6

Reverse the last undo action.

Max7

Represents the size of the LineEditMenuItems enum.

See Also