Description
Gets or sets the width for the slides in presentation, in pixels.
Type
long (read/write)
Example
This example enlarges your presentation after conversion to Flash format.
Sub DimensionOperations()
Dim fs As New FlashSpringAPI.FlashSpring
fs.OpenPresentation "d:\temp\test.ppt"
fs.Settings.BackgroundAudio.LoopAudio = True
fs.Settings.Playback.LoopPresentation = True
fs.Presentation.Height = .Height * 0.2
fs.Presentation.Width = .Width * 0.2
fs.GenerateFlash "c:\presentations", "myMovie.swf", OM_SOLID
fs.ClosePresentation
fs.ClosePowerPoint
End Sub
See Also
Height Property