void
OpenPresentation ( string filename )
Description
Open the presentation need
to be converted. This method should call before calling Convert method.
Parameters
FileName
– absolute path of PowerPoint presentation file.
Example
C#
using DigitalOfficePro.PowerFlashPointSDK.PFPConverter;
PFPConverter presConverter = new PFPConverter();
presConverter.OpenPresentation("c:\\Presentation1.ppt");
presConverter.Convert("c:\\Presentation1.swf");
presConverter.ClosePresentation();
VB
Dim presConverter
As New PFPConverter
presConverter.OpenPresentation "c:\Presentation1.ppt"
presConverter.Convert "c:\Presentation1.swf"
presConverter.ClosePresentation
Related Topics