I'm implementing multiline Label Figure.
I have a question.
How can i change font size of textflow ?
I tried with the method [textflow.setFont] before I had changed height value of fontdata.
use this code,Font tFont = m_Textflow.getFont();
FontData[] tFontDataList = tFont.getFontData();
tFontDataList[0].setHeight(aSize);
m_Textflow.setFont(new Font(null, tFontDataList[0]));
But that didn’t work correctly and made any space on head.
Help me please T^T