- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《C操作word表格
做了一些关于c#操作word文档方面的工作
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using MSword = Microsoft.Office.Interop.Word;
using System.IO;
using System.Drawing.Printing;
using System.Drawing.Drawing2D;
using System.Threading;
namespace Holter_print
{
public partial class aaa : Form
{
public aaa()
{
InitializeComponent();
}
private void aaa_Load(object sender, EventArgs e)
{
CreatWord();
}
public void CreatWord()
{
string strtitle = C#生成word和操作word表格;
object oEndOfDoc = \\endofdoc;
Object Nothing = System.Reflection.Missing.Value;
Object filename = E:\\test.doc;//保存word文档路径
if (File.Exists(filename.ToString()))//判断该文件是否存在
{
File.Delete(filename.ToString());//存在删除
}
//创建Word文档
MSword.Application WordApp = new MSword.ApplicationClass();
WordApp.Visible = true;//设置动态建立的word文档可见
MSword.Document WordDoc = WordApp.Documents.Add(ref Nothing, ref Nothing, ref Nothing, ref Nothing);
WordApp.Selection.PageSetup.LeftMargin = WordApp.CentimetersToPoints(float.Parse(2));//设置word文档的左边距
WordApp.Selection.PageSetup.RightMargin = WordApp.CentimetersToPoints(float.Parse(2));//设置word文档的右边距
WordApp.ActiveWindow.HorizontalPercentScrolled = 11;//设置文档的水平滑动距离
WordApp.ActiveWindow.ActivePane.View.Zoom.Percentage = 75;//设置文档的百分比例
#region word文档报告
MSword.Paragraph oPara1;
oPara1 = WordDoc.Content.Paragraphs.Add(ref Nothing);
oPara1.Range.Text = strtitle;
oPara1.Range.Font.Bold = 0;
oPara1.Range.Font.Name = 宋体;
oPara1.Range.Font.Size = 12;
oPara1.Range.ParagraphFormat.Alignme
文档评论(0)