hello,
We are using Aspose.Words for .NET 13.8.0.0 v.
The documents are LTR documents (Hebrew).
once we invoke this code:
private void UpdateHeaderFile(string loclFilePath,string fileName)
{
string dataDir = Path.GetFullPath(loclFilePath);
// Load the document from disk.
Aspose.Words.License license = new Aspose.Words.License();
license.SetLicense("Aspose.Words.lic");
Aspose.Words.Document doc = new Aspose.Words.Document(dataDir + fileName);
doc.UpdateFields();
doc.Save(dataDir + fileName);
}
The TOC table is getting a different alignment and is invisible in the document (it is after the page border)
Attached is an example of word file that the TOC gets the problem.
Does anyone got an idea?