需要使用openxml 2.5修改段落的innerxml

时间:2014-01-23 08:47:01

标签: c# c#-4.0 openxml openxml-sdk

我试图修改word文档段落的innerxml,但是innerxml属性拒绝设置。以下是我尝试的代码:

static void Main(string[] args)
{
    string destinationWordFile = @"C:\Users\Testing\Modified Files\1216085_01012013.docx";
    using (WordprocessingDocument wordDoc = WordprocessingDocument.Open(destinationWordFile, true, new OpenSettings { AutoSave = true }))
    {
        OpenXmlWdProcessing.RunProperties rp = new OpenXmlWdProcessing.RunProperties();
        MainDocumentPart mainPart = wordDoc.MainDocumentPart;
        var invoiceDocument = wordDoc.MainDocumentPart.Document;
        var po = (from body in invoiceDocument.Body
                               where body.InnerText.Contains("PO:")
                               select body).FirstOrDefault();
        string poInnerXml = po.InnerXml;
        string modifiedXML = poInnerXml.Remove(poInnerXml.IndexOf("w:w=\""), 10);
        po.InnerXml.Remove(0);
        po.InnerXml.Insert(0,modifiedXML);
        mainPart.Document.Save();
    }

以下是我要定位的XML:

<w:pPr xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
    <w:pStyle w:val="Normal" />
    <w:framePr w:w="516" w:x="6881" w:y="7175" />
    <w:widowControl w:val="off" />
    <w:autoSpaceDE w:val="off" />
    <w:autoSpaceDN w:val="off" />
    <w:spacing w:before="0" w:after="0" w:line="179" w:lineRule="exact" />
    <w:ind w:left="0" w:right="0" w:first-line="0" />
    <w:jc w:val="left" />
    <w:rPr>
        <w:rFonts w:ascii="AATWWN+Helvetica" />
        <w:color w:val="000000" />
        <w:sz w:val="16" />
    </w:rPr>
</w:pPr>
<w:r xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
    <w:rPr>
        <w:rFonts w:ascii="AATWWN+Helvetica" />
        <w:color w:val="000000" />
        <w:sz w:val="16" />
    </w:rPr>
    <w:t>PO:                             111111111111</w:t>
</w:r>

我想从w:w="516"中移除<w:framePr w:w="516" w:x="6881" w:y="7175" />。 有人可以告诉我这个吗?非常感谢提前。

2 个答案:

答案 0 :(得分:1)

VIPUL,

这是我躺在那里的一段代码我已经修改过来向你解释如何删除width属性。

//Get all paragraphs in the document
IEnumerable<Paragraph> paragraphs = doc.MainDocumentPart.Document.Body.OfType<Paragraph>();
foreach (Paragraph paragraph in paragraphs)
{
    FrameProperties framePr = paragraph.OfType<FrameProperties>().FirstOrDefault();
    framePr.Width = null;
}

您可以在类似的行上更改代码。 将属性值设置为null应该可以工作,我还没有尝试过。如果您遇到任何问题,请告诉我。

答案 1 :(得分:0)

使用此代码删除FrameProperties属性。

//paragraph is the Paragraph object that needs to be processed.

FrameProperties frameProperties = pTag.Descendants<FrameProperties>().FirstOrDefault();
if (frameProperties != null)
{
    frameProperties.Width = null; //give string value if you want to set one say "516"
    // To set/remove height attribute use this.
    frameProperties.Height = null;
    //To Remove frame properties itself from paragraph
    frameProperties.Remove();
}

最后使用此代码保存包。

//package is the object of WordProcessingDocument
package.MainDocumentPart.Document.Save();

希望这有帮助!