
tHeight()
Purpose
Get the text height of the display
Description
Find the number of characters that will fit on the screen vertically at the current text size
Syntax
textheight = tHeight ()Arguments
textheight The number of characters that will fit on the screen vertically at the current fontsize
Example
clear()
textSize( 100 )
for y = 0 to tHeight() loop
    for x = 0 to tWidth() loop
        printAt( x, y, y + 1 )
        update()
    repeat
repeat
for i = 1 to 100 loop
    update()
repeat
Associated Commands
cursor(), drawText(), ink(), len(), print(), printAt(), stringHash(), textSize(), tWidth()