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".
See Implementation
Selects characters inside LineEdit between from and to. By default, from is at the beginning and to at the end.