Help for this page

Select Code to Download


  1. or download this
    my $pdf = PDF::API2::Simple->new( 
        header => \&my_header($CategoryName),
    ...
      my $pdf = shift;
      # do my stuff
    }
    
  2. or download this
    my $pdf = PDF::API2::Simple->new( 
        header => sub {
    ...
      my $pdf = shift;
      # do my stuff
    }