There is a FontHeight(int FontHandle) function, I used it in my Windows program. But I'm not sure if this function is always reliable, so I made my own function I use when it looks like FontHeight() is acting funny,
//string Font_File is just the path+name of the image with the font
int TB_CheckFontH(string Font_File)
{
int Test_Image = LoadImage(Font_File);
int Font_Test = ((ImageHeight(Test_Image)-6)/5);
FreeImage(Test_Image);
return Font_Test;
}