Does anyone have a working example of how to add FieldTOAEntry to a document? The FieldTOA exists in the document but there aren't any entries in the table.
string toatitle = "(APP, 2020)";
WField field = paragraph.AppendField(toatitle, FieldType.FieldTOAEntry) as WField;
string toaentry = "{CITATION APP \\I Who we are, 2020}";
field.FieldCode = toaentry;
I've got this far, replicating what I can see in a real Word Document. I'm assuming I'm not formatting the entries correctly so it's missing data, but there aren't any errors.