Hi,
We have a word document that has some of it's form fields disappear after calling UpdateFields. Would like to confirm if this is expected behavior, or a bug? Attached is a word doc and some code to reproduce the situation.
Thanks,
Greg
protected static void Test5683()
{
try
{
var doc = new Document("5683.docx");
//doc.UpdateFields();
doc.Save(@"C:\out.docx");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
throw;
}
}