Add document to Presentation via OLE

What is OLE object for Presentation?

The “Object Linking and Embedding” technology helps to embed some other document in the currently editing Presentation one. For this case, the frame object is using for the embedded document content. The Word and PDF documents, Excel and Oped Document format spreadsheets and other document types can be embedded in a PowerPoint presentation as frame that is predefined with X and Y coordinates and it’s size.

Add document to Presentation via OLE

GroupDocs.Merger provides an ability to add other single document as embedded document to Presentation. 
Here are the steps for it:

The following code sample demonstrates how to add other single document as embedded document to Presentation:

int pageNumber = 2;
OlePresentationOptions oleSlidesOptions = new OlePresentationOptions("c:\embedded.pdf", pageNumber);
oleSlidesOptions.setX(10);
oleSlidesOptions.setY(10);
 
Merger merger = new Merger("c:\sample.ppt");
{
    merger.importDocument(oleSlidesOptions);
    merger.save("c:\output\result.ppt");
}