Embedded Objects
Embedded Objects are currently not supported by the GemBox.Presentation API. Nevertheless, they are preserved in the output file written by GemBox.Presentation if the input PowerPoint file contains them.
For more information about GemBox.Presentation preservation, see the preservation help page.
The following example shows how GemBox.Presentation preserves Embedded Objects.

using GemBox.Presentation;
class Program
{
static void Main()
{
// If using Professional version, put your serial key below.
ComponentInfo.SetLicense("FREE-LIMITED-KEY");
var presentation = PresentationDocument.Load("%InputFileName%");
presentation.Save("Embedded Objects.pptx");
}
}
Imports GemBox.Presentation
Module Program
Sub Main()
' If using Professional version, put your serial key below.
ComponentInfo.SetLicense("FREE-LIMITED-KEY")
Dim presentation = PresentationDocument.Load("%InputFileName%")
presentation.Save("Embedded Objects.pptx")
End Sub
End Module
Want more?
Like it?
Published: December 13, 2018 | Modified: April 8, 2021 | Author: Marek Turis