彩票走势图

Word控件Spire.Doc 【图像形状】教程(9): 如何在 C# 和 VB.NET 中从 word 文档中删除形状

翻译|使用教程|编辑:胡涛|2022-10-21 11:04:27.513|阅读 95 次

概述:本文将介绍如何在 C# 和 VB.NET 中从 word 文档中删除形状,欢迎查阅~

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

Spire.Doc for .NET是一款专门对 Word 文档进行操作的 .NET 类库。在于帮助开发人员无需安装 Microsoft Word情况下,轻松快捷高效地创建、编辑、转换和打印 Microsoft Word 文档。拥有近10年专业开发经验Spire系列办公文档开发工具,专注于创建、编辑、转换和打印Word/PDF/Excel等格式文件处理,小巧便捷。

Spire.Doc for.NET 最新下载

我们已经演示了如何使用 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 步从文档中获取第一节和从该节中获取第一段。

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 文档中删除形状,如果您有其他问题也可以继续浏览本系列文章,获取相关教程,你还可以给我留言或者加入我们的官方技术交流群。


欢迎下载|体验更多E-iceblue产品

获取更多信息请咨询  ;技术交流Q群(767755948)


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP