How can I fetch data from shapes and diagrams of a word document using gembox document bundle?

165 Views Asked by At

My word file contains shapes and diagrams with data strings in them. Need to fetch those data. Gembox Document provides examples of fetching data from header footer and basic paragraph structure.

1

There are 1 best solutions below

0
On

Without checking your file no one can say for sure, nevertheless a shape that contains a text inside of it should be a TextBox element.
You can fetch the TextBox text like the following:

DocumentModel document = DocumentModel.Load("Sample.docx");

foreach (TextBox textBox in document.GetChildElements(true, ElementType.TextBox))
{
    string text = textBox.Content.ToString();
    // ...
}