Click or drag to resize

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
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public void Select(
	int from = 0,
	int to = -1
)

Parameters

from (Optional)
Type: System.Int32

[Missing <param name="from"/> documentation for "M:Godot.LineEdit.Select(System.Int32,System.Int32)"]

to (Optional)
Type: System.Int32

[Missing <param name="to"/> documentation for "M:Godot.LineEdit.Select(System.Int32,System.Int32)"]

See Also