in reply to Re: Win32::PowerPoint extension
in thread Win32::PowerPoint extension
And the constants are defined in the sub-module so ppSlideSizeLetterPaper is a number as far a perl is concerned.
Here's the result of trying a number:# Set the slide size # $PPT->page_setup( { slidesize => 'ppSlideSizeLetterPaper', # width => 11*72, # height => 8.5*72 } ); # $PPT->page_setup( { slidesize => 'ppSlideSizeLetterPaper' } ); # $PPT->page_setup( { width => 11*72, # height => 8.5*72 } ); $PPT->page_setup( { slidesize => '5' } );
Ideas?PowerPoint.pm(): options: slidesize=5 PowerPoint.pm(): slide size=7 PowerPoint.pm(): width=960 PowerPoint.pm(): height=540
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Win32::PowerPoint extension
by EnzoXenon (Acolyte) on May 26, 2023 at 17:32 UTC | |
by Bod (Parson) on May 26, 2023 at 18:46 UTC | |
by kcott (Archbishop) on May 26, 2023 at 19:06 UTC | |
by Bod (Parson) on May 26, 2023 at 21:27 UTC | |
by kcott (Archbishop) on May 27, 2023 at 02:25 UTC | |
by Bod (Parson) on May 27, 2023 at 10:30 UTC |