myFont1 = a2CreateFont("ariel", 30, a2Size_Cell(), a2Style_Normal())
myFont2 = a2CreateFont("ariel", 30, a2Size_Char(), a2Style_Normal())
myFont3 = a2CreateFont("ariel", 30, a2Size_Point(), a2Style_Normal())
print "Line Height of font size 30 with a2Size_Cell() is ";a2GetLineHeight(myFont1);" pixels."
print "Line Height of font size 30 with a2Size_Char() is ";a2GetLineHeight(myFont2);" pixels."
print "Line Height of font size 30 with a2Size_Point() is ";a2GetLineHeight(myFont3);" pixels."
WAIT KEY