彩票走势图

Word格式处理控件Spire.Doc功能演示:在 .NET 应用程序中使用 Spire.Doc for.net

翻译|使用教程|编辑:胡涛|2022-02-22 13:53:16.590|阅读 268 次

概述:为了便于使用者体验,在本文档中,我们将介绍使用 Visual Studio 完成一个关于 Spire.Doc 的简单演示!

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

相关链接:

在本文档中,我们将快速帮助您使用 Visual Studio 完成一个关于 Spire.Doc 的简单演示。在开始之前,请确保您的计算机上安装了 Spire.Doc for .NET 和 Visual Studio(2008 或更高版本)。

Spire.Doc for .NET最新下载

1. 在 Visual Studio 中,依次单击File、New、Project,如果要创建 C# 项目,请选择Visual C#、Windows并选择Windows Forms Application并将项目命名为HelloWorld,单击OK。如果要创建Visual Basic项目,请选择Visual Basic、Windows Forms Application并将项目命名为HelloWorld,单击OK。  

2. 在解决方案资源管理器中,右键单击项目HelloWorld并单击添加引用。在Browse选项卡中,找到您安装 Spire.Doc for .NET 的文件夹,默认为“C:\Program Files\e-iceblue\Spire.Doc”,双击文件夹Bin。

  • 是.NET 2.0,双击文件夹NET2.0
  • 是.NET 3.5,双击文件夹NET3.5
  • 是.NET 4.0,双击文件夹NET4.0

选择程序集 Spire.Doc.dll 并单击“OK”将其添加到项目中。

3. 在解决方案资源管理器中,双击文件 Form1.cs/Form1.vb 以打开表单设计视图,在表单中添加一个按钮,并将其名称更改为“btnRun”,将其文本更改为“Run ”。

4. 双击“Run ”按钮,您将看到代码视图:

[C#]  

private void btnRun_Click(object sender, EventArgs e)

[VB.NET] 

Private Sub btnRun_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnRun.Click

5. 将以下代码添加到文件顶部:

[C#] 

using Spire.Doc;
using Spire.Doc.Documents;

[VB.NET]  

Imports Spire.Doc
Imports Spire.Doc.Documents

6.在方法btnRun_Click中添加如下代码:

[C#]  

//Create word document
Document document = new Document();
//Create a new paragraph
Paragraph paragraph = document.AddSection().AddParagraph();
//Append Text
paragraph.AppendText("Hello World!");
//Save doc file.
document.SaveToFile("Sample.doc", FileFormat.Doc);
//Launching the MS Word file.
try
{
System.Diagnostics.Process.Start("Sample.doc");
}
catch { }

[VB.NET]   

'Create word document
Dim document_Renamed As New Document()
'Create a new paragraph
Dim paragraph_Renamed As Paragraph = document_Renamed.AddSection().AddParagraph()
'Append Text
paragraph_Renamed.AppendText("Hello World!")
'Save doc file.
document_Renamed.SaveToFile("Sample.doc", FileFormat.Doc)
'Launching the MS Word file.
Try
System.Diagnostics.Process.Start("Sample.doc")
Catch
End Try

7. 在 Solution Explorer ,右键单击项目HelloWorld并单击Debug,然后单击 Start new instance,您将看到打开的窗口 Form1,单击“Run ”按钮,将创建、编辑并打开一个 Word 文档,字符串“Hello, World”将填充在第 1 页的第一行。

更多Spire文档管理控件体验


标签:

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP