我的word文件包含带有数据字符串的形状和图表。需要获取这些数据。 Gembox Document提供了从页眉页脚和基本段落结构中获取数据的示例。
答案 0 :(得分:0)
如果不检查您的文件,没有人可以肯定地说,但是其中包含文本的形状应该是TextBox element。
您可以按以下方式获取TextBox
文字:
DocumentModel document = DocumentModel.Load("Sample.docx");
foreach (TextBox textBox in document.GetChildElements(true, ElementType.TextBox))
{
string text = textBox.Content.ToString();
// ...
}