? ?/// <summary>
? ? ? ? /// 获取标签对象内的所有Text标签的文本内容
? ? ? ? /// </summary>
? ? ? ? /// <param name="el">标签对象</param>
? ? ? ? /// <returns>所有Text标签的文本内容</returns>
? ? ? ? private string GetText(OpenXmlElement el)
? ? ? ? {
? ? ? ? ? ? List<Text> texts = el.Descendants<Text>().ToList();
? ? ? ? ? ? StringBuilder textSB = new StringBuilder(texts.Count * 5);
? ? ? ? ? ? foreach (Text text in texts)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? if (!string.IsNullOrEmpty(text.InnerText))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? textSB.Append(text.InnerText);
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? return textSB.ToString();
? ? ? ? }