LineEdit.Select Method |
Selects characters inside LineEdit between from and to. By default, from is at the beginning and to at the end.
text = "Welcome" select() # Will select "Welcome". select(4) # Will select "ome". select(2, 5) # Will select "lco".
Namespace: Godot
public void Select( int from = 0, int to = -1 )
[Missing <param name="from"/> documentation for "M:Godot.LineEdit.Select(System.Int32,System.Int32)"]
[Missing <param name="to"/> documentation for "M:Godot.LineEdit.Select(System.Int32,System.Int32)"]