GroupDocsGists
10/24/2017 - 1:44 PM

GenerateSingleRowFromXMLinPresentationFormat.cs

// For complete examples and data files, please go to https://github.com/groupdocsassembly/GroupDocs_Assembly_NET
//Setting up source spreadsheet template
const String strPresentationTemplate = "Presentation Templates/Single Row.pptx";
//Setting up destination document report 
const String strPresentationReport = "Presentation Reports/Single Row_XML Report.pptx";
try
{
    //Instantiate DocumentAssembler class
    DocumentAssembler assembler = new DocumentAssembler();
    //Call AssembleDocument to generate Single Row Report in presentation format
    assembler.AssembleDocument(CommonUtilities.GetSourceDocument(strPresentationTemplate), CommonUtilities.SetDestinationDocument(strPresentationReport), DataLayer.GetSingleCustomerXML(), "customer");
}
catch (Exception ex)
{
    Console.WriteLine(ex.Message);
}