in reply to Tk::Canvas font problem
use Tk; my $top = new MainWindow; my $can = $top->Canvas()->pack(); $can->createText(50,10,-text=>"Hello",-font=>"Century 10"); $can->createText(50,50,-text=>"Hello",-font=>"Century 30"); MainLoop();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Tk::Canvas font problem
by Anonymous Monk on Jun 29, 2004 at 20:38 UTC |