LineEdit.select

Selects characters inside LineEdit between from and to. By default from is at the beginning and to at the end.

More...
struct LineEdit
@nogc nothrow
void
select
(
in long from = 0
,
in long to = -1
)

Detailed Description

text = "Welcome" select() # Welcome select(4) # ome select(2, 5) # lco

Meta