Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ** _Row is the one row of the C# DataTable **
  2.  
  3. Aspose.Words.Document _Doc = new Aspose.Words.Document(pSourceTemplatePath);
  4. DataTable _RowDataTable = pDataSource.Clone();
  5.  
  6. _RowDataTable.Rows.Add(_Row.ItemArray);
  7. _Doc.MailMerge.Execute(_RowDataTable);
  8.  
  9. _Doc.Save(pNewFileToSave, SaveFormat.Pdf);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement