• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#操作Word完全功略!

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
前提:
导入COM库:Microsoft word 11.0 Object Library.
引用里面就增加了:



创建新Word
            object oMissing = System.Reflection.Missing.Value;
            Word._Application oWord;
            Word._Document oDoc;
            oWord 
= new Word.Application();
            oWord.Visible 
= true;
            oDoc 
= oWord.Documents.Add(ref oMissing, ref oMissing,
                
ref oMissing, ref oMissing);

打开文档:
            object oMissing = System.Reflection.Missing.Value;
            Word._Application oWord;
            Word._Document oDoc;
            oWord 
= new Word.Application();
            oWord.Visible 
= true;
            
object fileName = @"E:CCCXCXXTestDoc.doc";
            oDoc 
= oWord.Documents.Open(ref fileName,
            
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
            
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
            
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);

导入模板
            object oMissing = System.Reflection.Missing.Value;
            Word._Application oWord;
            Word._Document oDoc;
            oWord 
= new Word.Application();
            oWord.Visible 
= true;
            
object fileName = @"E:XXXCCXTest.doc";
            oDoc 
= oWord.Documents.Add(ref fileName, ref oMissing,
                            
ref oMissing, ref oMissing);


.添加新表
            object oMissing = System.Reflection.Missing.Value;
            Word._Application oWord;
            Word._Document oDoc;
            oWord 
= new Word.Application();
            oWord.Visible 
= true;
            oDoc 
= oWord.Documents.Add(ref oMissing, ref oMissing,
                
ref oMissing, ref oMissing);

            
object start = 0;
            
object end = 0;
            Word.Range tableLocation 
= oDoc.Range(ref start, ref end);
            oDoc.Tables.Add(tableLocation, 
34ref oMissing, ref oMissing);

.表插入行
            object oMissing = System.Reflection.Missing.Value;
            Word._Application oWord;
            Word._Document oDoc;
            oWord 
= new Word.Application();
            oWord.Visible 
= true;
            oDoc 
= oWord.Documents.Add(ref oMissing, ref oMissing,
                
ref oMissing, ref oMissing);

            
object start = 0;
            
object end = 0;
            Word.Range tableLocation 
= oDoc.Range(ref start, ref end);
            oDoc.Tables.Add(tableLocation, 
34ref oMissing, ref oMissing);

            Word.Table newTable 
= oDoc.Tables[1];
            
object beforeRow = newTable.Rows[1];
            newTable.Rows.Add(
ref beforeRow);

.单元格合并
            object oMissing = System.Reflection.Missing.Value;
            Word._Application oWord;
            Word._Document oDoc;
            oWord 
= new Word.Application();
            oWord.Visible 
= true;
            oDoc 
= oWord.Documents.Add(ref oMissing, ref oMissing,
                
ref oMissing, ref oMissing);

            
object start = 0;
            
object end = 0;
            Word.Range tableLocation 
= oDoc.Range(ref start, ref end);
            oDoc.Tables.Add(tableLocation, 
34ref oMissing, ref oMissing);

            Word.Table newTable 
= oDoc.Tables[1];
            
object beforeRow = newTable.Rows[1];
            newTable.Rows.Add(
ref beforeRow);

            Word.Cell cell 
= newTable.Cell(11);
            cell.Merge(newTable.Cell(
12));

.单元格分离
            object oMissing = System.Reflection.Missing.Value;
            Word._Application oWord;
            Word._Document oDoc;
            oWord 
= new Word.Application();
            oWord.Visible 
= true;
            oDoc 
= oWord.Documents.Add(ref oMissing,
                
ref oMissing, ref oMissing);

            
object start = 0;
            
object end = 0;
            Word.Range tableLocation 
= oDoc.Range(ref start, ref end);
            oDoc.Tables.Add(tableLocation, 
34ref oMissing, ref oMissing);

            Word.Table newTable 
= oDoc.Tables[1];
            
object beforeRow = newTable.Rows[1];
            newTable.Rows.Add(
ref beforeRow);

            Word.Cell cell 
= newTable.Cell(11);
            cell.Merge(newTable.Cell(
12));

            
object Rownum = 2;
            
object Columnnum = 2;
            cell.Split(
ref Rownum, ref  Columnnum);
="color:>

通过段落控制插入
            object oMissing = System.Reflection.Missing.Value;
            oPara1.Range.InsertParagraphAfter();

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
基于.Net平台应用程序唯一运行实例C#代码实现发布时间:2022-07-13
下一篇:
C#List中的ForEach发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap