FabGL
ESP32 Display Controller and Graphics Library

◆ setText() [1/2]

void setText ( char const *  text,
bool  moveCursor = true 
)

Sets initial text.

Call this method if the input must have some text already inserted. This method can be also called during editing to replace current text.

Parameters
textInitial text.
moveCursorIf true the cursor is moved at the end of initial text.

Example:

LineEditor ed(&Terminal);
ed.setText("Initial text ");
char * txt = ed.get();
Terminal.printf("Your input is: %s\r\n", txt);

Definition at line 5235 of file terminal.cpp.