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
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?
If not, when do you anticipate that this capability will be released?
Posted 21 January 2019, 10:11 pm EST
Hello,
TextBoxes are not yet supported by GcWord. We have forwarded the same as an enhancement request to the concerned team [Internal Tracking ID: 363095].
However, you can fetch the same from a loaded document and manipulate it as follows:
```
UnknownContentCollection unknowns = doc.Body.Unknowns;
for (int i = unknowns.Count - 1; i >= 0; i–)
{
if (unknowns[i].OuterXml.ToString().Contains(“Test”))
{
unknowns[i].Delete();
}
}
Regards,
Esha
[zip filename="prj_GcWord_TextBox.zip"]https://gccontent.blob.core.windows.net/forum-uploads/file-07a4841d-5259-41be-819e-999606f26309.zip[/zip]