void
AddExternalSwf(string FileName, int Left, int Top)
Description
For adding external swf common to all slides.
Parameters
FileName – Full path of the swf file to be inserted.
Left – horizontal position of inserted swf in
output swf.
Top –
vertical position of inserted swf in output swf.
Remarks
InitLibrary must be successfully
called before trying this method. Otherwise converter will throw an exception.
Example
C#
PFPConverter presConverter = new PFPConverter();
presConverter.InitLibrary("Your
UserName", "Your Registration key");
presConverter.AddExternalSwf(@"C:\My
CompanyLogo.swf", 0, 0);
VB
Dim presConverter
As New PFPConverter
presConverter.InitLibrary "Your
UserName", "Your Registration key”
presConverter.AddExternalSwf
"C:\My CompanyLogo.swf", 0, 0
Related Topics