Dzwebs.Net

撰写电脑技术杂文十余年

Microsoft.Office.Interop.Excel的代码收藏

Admin | 2014-10-24 8:49:22 | 被阅次数 | 4485

温馨提示!

如果未能解决您的问题,请点击搜索;登陆可复制文章,点击登陆

  ApplicationClass ExcelApp = New ApplicationClass();

  更改 Excel 标题栏:
  ExcelApp.Caption := '大众计算机学习网标题;
  添加新工作簿:
  ExcelApp.WorkBooks.Add;
  打开已存在的工作簿:
  ExcelApp.WorkBooks.Open( 'C:\Excel\Demo.xls' );
  设置第2个工作表为活动工作表:
  ExcelApp.WorkSheets[2].Activate; 或
  ExcelApp.WorksSheets[ 'Sheet2' ].Activate;
   给单元格赋值:
  ExcelApp.Cells[1,4].Value := '第一行第四列';
  设置指定列的宽度(单位:字符个数),以第一列为例:
  ExcelApp.ActiveSheet.Columns[1].ColumnsWidth := 5;
  设置指定行的高度(单位:磅)(1磅=0.035厘米),以第二行为例:
  ExcelApp.ActiveSheet.Rows[2].RowHeight := 1/0.035; // 1厘米
  在第8行之前插入分页符:
  ExcelApp.WorkSheets[1].Rows[8].PageBreak := 1;
   在第8列之前删除分页符:
  ExcelApp.ActiveSheet.Columns[4].PageBreak := 0;
   指定边框线宽度:
  ExcelApp.ActiveSheet.Range[ 'B3:D4' ].Borders[2].Weight := 3;
  1-左 2-右 3-顶 4-底 5-斜( \ ) 6-斜( / )
   清除第一行第四列单元格公式:
  ExcelApp.ActiveSheet.Cells[1,4].ClearContents;
  设置第一行字体属性:
  ExcelApp.ActiveSheet.Rows[1].Font.Name := '隶书';
  ExcelApp.ActiveSheet.Rows[1].Font.Color := clBlue;
  ExcelApp.ActiveSheet.Rows[1].Font.Bold := True;
  ExcelApp.ActiveSheet.Rows[1].Font.UnderLine := True;
  进行页面设置:
 a.页眉:
 ExcelApp.ActiveSheet.PageSetup.CenterHeader := '报表演示';
 b.页脚:
 ExcelApp.ActiveSheet.PageSetup.CenterFooter := '第&P页';
 c.页眉到顶端边距2cm:
 ExcelApp.ActiveSheet.PageSetup.HeaderMargin := 2/0.035;
 d.页脚到底端边距3cm:
 ExcelApp.ActiveSheet.PageSetup.HeaderMargin := 3/0.035;
 e.顶边距2cm:
 ExcelApp.ActiveSheet.PageSetup.TopMargin := 2/0.035;
 f.底边距2cm:
 ExcelApp.ActiveSheet.PageSetup.BottomMargin := 2/0.035;
 g.左边距2cm:
 ExcelApp.ActiveSheet.PageSetup.LeftMargin := 2/0.035;
 h.右边距2cm:
 ExcelApp.ActiveSheet.PageSetup.RightMargin := 2/0.035;
 i.页面水平居中:
 ExcelApp.ActiveSheet.PageSetup.CenterHorizontally := 2/0.035;
 j.页面垂直居中:
 ExcelApp.ActiveSheet.PageSetup.CenterVertically := 2/0.035;
 k.打印单元格网线:
 ExcelApp.ActiveSheet.PageSetup.PrintGridLines := True;

   拷贝操作:
 a.拷贝整个工作表:
 ExcelApp.ActiveSheet.Used.Range.Copy;
 b.拷贝指定区域:
 ExcelApp.ActiveSheet.Range[ 'A1:E2' ].Copy;
 c.从A1位置开始粘贴:
 ExcelApp.ActiveSheet.Range.[ 'A1' ].PasteSpecial;
 d.从文件尾部开始粘贴:
 ExcelApp.ActiveSheet.Range.PasteSpecial;
  插入一行或一列:
 a. ExcelApp.ActiveSheet.Rows[2].Insert;
 b. ExcelApp.ActiveSheet.Columns[1].Insert;
  删除一行或一列:
 a. ExcelApp.ActiveSheet.Rows[2].Delete;
 b. ExcelApp.ActiveSheet.Columns[1].Delete;
  打印预览工作表:
 ExcelApp.ActiveSheet.PrintPreview;
   打印输出工作表:
 ExcelApp.ActiveSheet.PrintOut;
  工作表保存:
 if not ExcelApp.ActiveWorkBook.Saved then
 ExcelApp.ActiveSheet.PrintPreview;
  工作表另存为:
 ExcelApp.SaveAs( 'C:\Excel\Demo1.xls' );
  放弃存盘:
 ExcelApp.ActiveWorkBook.Saved := True;
  关闭工作簿:
 ExcelApp.WorkBooks.Close;
  退出 Excel:
 ExcelApp.Quit;


该杂文来自: 网站开发杂文

上一篇:利用ASP.NET实现在线截图的功能之ASP.NET代码

下一篇:可逆加密代码示例

网站备案号:

网站备案号:滇ICP备11001339号-7

版权属性:

Copyright 2007-2021-forever Inc. all Rights Reserved.

联系方式:

Email:dzwebs@126.com QQ:83539231 访问统计