在VSTO中插入WordMl时如何在Word中应用样式?

时间:2018-09-19 06:52:17

标签: c# wordml

我制作了一个WordMl程序包,并使用“ Range.InsertXML”方法插入,但是word删除了插入段落的样式。

如何保留从wordml插入的样式?

下面是WordMl软件包。

 <?xml version="1.0" encoding="UTF-8"?>
<pkg:package xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
   <pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
      <pkg:xmlData>
         <w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
            <w:body>
               <w:p xmlns:wsp="http://schemas.microsoft.com/office/word/2003/wordml/sp2" wsp:rsidR="" wsp:rsidRPr="" wsp:rsidRDefault="">
                  1537339367146
                  <w:r wsp:rsidRPr="">
                     <w:rPr>
                        <w:color w:val="" />
                        <w:sz w:val="20" />
                     </w:rPr>
                     <w:t xml:space="preserve"> Corey M Abramson, Elena Portacolone </w:t>
                  </w:r>
                  <w:r>
                     <w:rPr>
                        <w:sz w:val="20" />
                        <w:rStyle w:val="sup" />
                     </w:rPr>
                     <w:t xml:space="preserve"> ( 2017 ) </w:t>
                  </w:r>
                  <w:r wsp:rsidRPr="">
                     <w:rPr>
                        <w:color w:val="" />
                        <w:sz w:val="20" />
                     </w:rPr>
                     <w:t xml:space="preserve"> What is new with old? What old age teaches us about inequality and stratification. </w:t>
                  </w:r>

               </w:p>
            </w:body>
         </w:document>
      </pkg:xmlData>
   </pkg:part>
</pkg:package>

1 个答案:

答案 0 :(得分:0)

我已经通过在ooxml中添加样式pkg解决了这个问题