- or download this
ppSlideSize35MM => 4,
ppSlideSizeA3Paper => 9,
...
ppSlideSizeLetterPaper => 2,
ppSlideSizeOnScreen => 1,
ppSlideSizeOverhead => 5,
- or download this
sub page_setup
{
...
$self->presentation->PageSetup->SlideWidth($options->{width});
$self->presentation->PageSetup->SlideHeight($options->{height});
}
- or download this
# Set the slide size
$PPT->page_setup( { slidesize => 'ppSlideSizeLetterPaper',
width => 11*72,
height => 8.5*72 } );
- 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";
- or download this
PowerPoint.pm(): options:
slidesize=ppSlideSizeLetterPaper
...
PowerPoint.pm(): slide size=7
PowerPoint.pm(): width=960
PowerPoint.pm(): height=540