- or download this
use Tk;
use Tk::Font;
...
foreach (1 .. 10) { $l->Font }
print "Fonts: " . join(",", $l->fontNames) . "\n";
- or download this
use Tk;
use Tk::Font;
...
)->pack;
MainLoop;
- or download this
use Tk;
use Tk::Font;
...
print "Atrr: " . join(",", $font->actual) . "\n";
print "Fonts: " . join(",", $w->fontNames) . "\n\n";
}
- or download this
print "Size: " . $font->configure('-size') . "\n";
- or download this
use Tk;
use Tk::Font;
...
$widget->update;
$widget->bind('<Configure>', \&ResizeText);
}