home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Editores / Perl5 / perl / lib / site / auto / Tk / Exists.al < prev    next >
Encoding:
Text File  |  1997-08-10  |  187 b   |  10 lines

  1. # NOTE: Derived from blib\lib\Tk.pm.  Changes made here will be lost.
  2. package Tk;
  3.  
  4. sub Exists
  5. {my $w = shift;
  6.  return defined($w) && ref($w) && $w->IsWidget && $w->exists;
  7. }
  8.  
  9. 1;
  10.