Hi,
I’m trying to use Aspose.Word 9.0.0 to generate an OpenOffice Writter document with region.
Source :
License licence = new License();
licence.SetLicense(Utils.GetAsposeLicenceFullPath());
Document document = new Document(PathTmpModele);
document.MailMerge.ExecuteWithRegions(ds);
document.UpdateFields();
document.Save(FichierSortie, SaveFormat.Odt);
Dataset ds and Odt document are attached
Could you please give me an exemple of Odt generation whith ExecuteWithRegion ? I don’t see how to link data with sections in my document to repeat them for each record.
Thanks