C# 删除Word文档中的段落-C# 删除Word中的指定段落

通过 Section.Paragraphs 属性获取 ParagraphCollection 对象后,再用 RemoveAt(int index) 方法可以实现删除指定索引处的段落。具体代码如下:

using Spire.Doc;
 
namespace RemoveParagraphs
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //加载Word文档
            Document document = new Document();
            document.LoadFromFile("南极洲.docx");
 
            //获取第一节
            Section section = document.Sections[0];
 
            //删除第四段
            section.Paragraphs.RemoveAt(3);
 
            //保存文档
            document.SaveToFile("删除指定段落.docx", FileFormat.Docx2016);
        }
    }
}

 

上一篇:第8天:数据存储-补充材料——‘UserDatabase.kt‘解读


下一篇:JUC(java.util.concurrent) 的常⻅类