Value to be displayed / set in textArea
Thank you for helping.
How can I change the value displayed / set in the textArea to the value brought from the variable instead of the touchgfx setting value?
Wildcards are used for the textArea.
I wrote the following code in the View constructor, but it didn't show up.
Thank you.
int tmp, f10, f01
tmp = hoge.getValue ();
f10 = tmp / 10;
f01 = tmp% 10;
Unicode :: snprintf (textAreaFirstBuffer, TEXTAREAFIRST_SIZE, "% 02d", f10 * 10 + f01);
textAreaFirst.setWildcard (textAreaFirstBuffer);
textAreaFirst.invalidate ();