Can someone please show me how to get the height value from the listbox in the cap below?
I understand how to get the width in each line of the listbox. But how do I get the height from each line in the listbox?
Thanks for your time.
One way to get the height of the first line:
GetToken(ListBox.LineText(0), 1, " ")
2nd:
GetToken(ListBox.LineText(1), 1, " ")
3rd:
GetToken(ListBox.LineText(2), 1, " ")
...
Develop games in your browser. Powerful, performant & highly capable.
Thank you sir. I could not figure it out. Thank you again Rojohound.