_Added in 1.9.6_
*$font(N|name, t)*
Returns the Nth installed font.
*Parameters*
table(ktable).
|*Parameter*|*Description*|
| N
; Get number of installed fonts.
//echo -ag $font(0)
; Check if 'Verdana' is installed.
if ($font(Verdana)) {
echo -ag Verdana is installed
}
else {
echo -ag Verdana is not installed
}