Interroga testo di uno specifico elemento UI.
Sintassi |
string get_text(const string &in name) |
---|---|
name |
Nome dell'elemento UI |
Risultato |
Rende il testo richiesto |
Nota |
Nel caso che l'elemento UI non supporti tale funzionalità, la richiesta renderà semplicemente una stringa vuota |
Esempio di utilizzo:
ui::form @my_form;
/* Rende testo per elemento UI item-1 */ string text = my_form.get_text("item-1"); |