Posted 20 January 2019, 5:23 am EST
Are you able to advise if the next release of GcWord will support Textboxes?If not, when do you anticipate that this capability will be released?
Forums Home / Document APIs / Documents for Word Topics
Posted by: harley.teague on 20 January 2019, 5:23 am EST
Posted 20 January 2019, 5:23 am EST
Are you able to advise if the next release of GcWord will support Textboxes?Replied 21 January 2019, 10:11 pm EST
Hello,UnknownContentCollection unknowns = doc.Body.Unknowns;
for (int i = unknowns.Count - 1; i >= 0; i--)
{
if (unknowns[i].OuterXml.ToString().Contains("Test"))
{
unknowns[i].Delete();
}
}