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() # Will select "Welcome". select(4) # Will select "ome". select(2, 5) # Will select "lco".

Meta