Help for this page

Select Code to Download


  1. or download this
        ppSlideSize35MM        =>  4,
        ppSlideSizeA3Paper     =>  9,
    ...
        ppSlideSizeLetterPaper =>  2,
        ppSlideSizeOnScreen    =>  1,
        ppSlideSizeOverhead    =>  5,
    
  2. or download this
    sub page_setup
    {
    ...
      $self->presentation->PageSetup->SlideWidth($options->{width});
      $self->presentation->PageSetup->SlideHeight($options->{height});
    }
    
  3. or download this
      # Set the slide size
      $PPT->page_setup( { slidesize  => 'ppSlideSizeLetterPaper',
                          width      => 11*72,
                          height     => 8.5*72 } );
    
  4. or download this
    print "\nPowerPoint.pm(): slide size=" . $self->presentation->PageSetu
    +p->SlideSize . "\n";
    print "PowerPoint.pm():   width=" . $self->presentation->PageSetup->Sl
    +ideWidth . "\n";
    print "PowerPoint.pm():  height=" . $self->presentation->PageSetup->Sl
    +ideHeight . "\n\n";
    
  5. or download this
    PowerPoint.pm(): options:
                        slidesize=ppSlideSizeLetterPaper
    ...
    PowerPoint.pm(): slide size=7
    PowerPoint.pm():   width=960
    PowerPoint.pm():  height=540