浏览代码

Fix for Resize FontSize of Paragraph crashes document, fix provided by tahansen

master
MadBoy_cp 11 年前
父节点
当前提交
0ca2d4250b
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12
    0
      DocX/Paragraph.cs

+ 12
- 0
DocX/Paragraph.cs 查看文件

@@ -2523,6 +2523,18 @@ namespace Novacode
}
rPr.SetElementValue(textFormatPropName, value);
var last = rPr.Elements().Last();
if (content as System.Xml.Linq.XAttribute != null)//If content is an attribute
{
if (last.Attribute(((System.Xml.Linq.XAttribute)(content)).Name) == null)
{
last.Add(content); //Add this attribute if element doesn't have it
}
else
{
last.Attribute(((System.Xml.Linq.XAttribute)(content)).Name).Value = ((System.Xml.Linq.XAttribute)(content)).Value; //Apply value only if element already has it
}
}
return;
}

正在加载...
取消
保存