• <menu id="w2i4a"></menu>
  • logo E-iceblue中文文檔

    文檔首頁>>E-iceblue中文文檔>>從 word 文檔中刪除形狀

    從 word 文檔中刪除形狀


    Spire.Doc for .NET是一款專門對 Word 文檔進行操作的 .NET 類庫。在于幫助開發(fā)人員無需安裝 Microsoft Word情況下,輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔。擁有近10年專業(yè)開發(fā)經(jīng)驗Spire系列辦公文檔開發(fā)工具,專注于創(chuàng)建、編輯、轉(zhuǎn)換和打印Word/PDF/Excel等格式文件處理,小巧便捷。

    Spire.Doc for.NET 最新下載

    我們已經(jīng)演示了如何使用 Spire.Doc 從代碼中向 word 文檔添加形狀。Spire.Doc 還支持通過索引刪除單個形狀或清除 word 文檔中的所有形狀。本文將說明如何在 C# 和 VB.NET 中從 word 文檔中刪除形狀。

    如何在 C# 和 VB.NET 中從 word 文檔中刪除形狀

    第 1 步初始化 Document 類的新實例并從文件加載文檔。

    Document doc = new Document();
    doc.LoadFromFile("Shapes.docx",FileFormat.Docx2010);

    第 2 步從文檔中獲取第一節(jié)和從該節(jié)中獲取第一段。

    Section section = doc.Sections[0];
    Paragraph para = section.Paragraphs[0];

    第 3 步從第一段中獲取形狀。

    ShapeObject shape = para.ChildObjects[0] as ShapeObject;

    第 4 步刪除形狀或所有形狀。

    //remove the third shape.
    para.ChildObjects.RemoveAt(2);
    
    ////clear all the shapes.
    //para.ChildObjects.Clear();

    第 5 步將文檔保存到文件中。

    doc.SaveToFile("Removeshape.docx",FileFormat.Docx2010);

    從word文檔中刪除一個形狀后的有效截圖:

    如何在 C# 和 VB.NET 中從 word 文檔中刪除形狀

    完整代碼

    [C#]

    using Spire.Doc;
    using Spire.Doc.Documents;
    using Spire.Doc.Fields;
    namespace RemoveShape
    {
    class Program
    {
    static void Main(string[] args)
    {
    Document doc = new Document();
    doc.LoadFromFile("Shapes.docx", FileFormat.Docx2010);
    
    Section section = doc.Sections[0];
    
    Paragraph para = section.Paragraphs[0];
    ShapeObject shape = para.ChildObjects[0] as ShapeObject;
    
    //remove the third shape.
    para.ChildObjects.RemoveAt(2);
    
    ////clear all the shapes.
    //para.ChildObjects.Clear();
    
    doc.SaveToFile("Removeshape.docx", FileFormat.Docx2010);
    }
    }
    }
    [VB.NET]
    Imports Spire.Doc
    Imports Spire.Doc.Documents
    Imports Spire.Doc.Fields
    Namespace RemoveShape
    Class Program
    Private Shared Sub Main(args As String())
    Dim doc As New Document()
    doc.LoadFromFile("Shapes.docx", FileFormat.Docx2010)
    
    Dim section As Section = doc.Sections(0)
    
    Dim para As Paragraph = section.Paragraphs(0)
    Dim shape As ShapeObject = TryCast(para.ChildObjects(0), ShapeObject)
    
    'remove the third shape.
    para.ChildObjects.RemoveAt(2)
    
    '''/clear all the shapes.
    'para.ChildObjects.Clear();
    
    doc.SaveToFile("Removeshape.docx", FileFormat.Docx2010)
    End Sub
    End Class
    End Namespace

    以上便是如何在 C# 和 VB.NET 中從 word 文檔中刪除形狀,如果您有其他問題也可以繼續(xù)瀏覽本系列文章,獲取相關教程,你還可以給我留言或者加入我們的官方技術交流群(767755948)

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();