彩票走势图

Spire.Doc 教程:从C#和VB.NET的word文档中删除形状

原创|使用教程|编辑:王香|2017-08-07 16:27:40.000|阅读 514 次

概述:Spire.Doc 是一个MS Word 组件,使用户可以直接执行各种Word文档处理任务,本文介绍了如何从C#和VB.NET的word文档中删除形状。

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

相关链接:

Spire.Doc还支持通过索引删除单个形状,或清除word文档中的所有形状,本文将介绍如何从C#和VB.NET中的word文档中删除形状。

具有形状的示例单词文档:

图片1

Step 1:初始化Document类的新实例,并从文件加载文档。

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

Step 2:从文档中获取第一个部分,并从该部分获取第一个段落。

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

Step 3:从第一段获取形状。

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

Step 4:去除形状或所有形状。

////clear all the shapes.
//para.ChildObjects.Clear();

Step 5:将文档保存到文件。

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

从Word文档中删除一个形状后的效果截图:

图片2

完整代码:

[C#]

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]

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)

慧都控件网


标签:文档管理图表控件控件word文档处理

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP