標籤:color os io 檔案 cti ar div 工作
1)ApplicationClass ExcelApp = New ApplicationClass();2) 更改 Excel 標題列: ExcelApp.Caption := ‘應用程式調用 Microsoft Excel‘; 3) 添加新活頁簿: ExcelApp.WorkBooks.Add; 4) 開啟已存在的活頁簿: ExcelApp.WorkBooks.Open( ‘C:\Excel\Demo.xls‘ ); 5) 設定第2個工作表為使用中工作表: ExcelApp.WorkSheets[2].Activate; 或 ExcelApp.WorksSheets[ ‘Sheet2‘ ].Activate; 6) 給儲存格賦值: ExcelApp.Cells[1,4].Value := ‘第一行第四列‘; 7) 設定指定列的寬度(單位:字元個數),以第一列為例: ExcelApp.ActiveSheet.Columns[1].ColumnsWidth := 5; 8) 設定指定行的高度(單位:磅)(1磅=0.035厘米),以第二行為例: ExcelApp.ActiveSheet.Rows[2].RowHeight := 1/0.035; // 1厘米 9) 在第8行之前插入分頁符: ExcelApp.WorkSheets[1].Rows[8].PageBreak := 1; 10) 在第8列之前刪除分頁符: ExcelApp.ActiveSheet.Columns[4].PageBreak := 0; 11) 指定邊框線寬度: ExcelApp.ActiveSheet.Range[ ‘B3:D4‘ ].Borders[2].Weight := 3; 1-左 2-右 3-頂 4-底 5-斜( \ ) 6-斜( / ) 12) 清除第一行第四列儲存格公式: ExcelApp.ActiveSheet.Cells[1,4].ClearContents; 13) 設定第一行字型屬性: 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; 14) 進行版面設定: 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; 15) 拷貝操作: 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; 16) 插入一行或一列: a. ExcelApp.ActiveSheet.Rows[2].Insert; b. ExcelApp.ActiveSheet.Columns[1].Insert; 17) 刪除一行或一列: a. ExcelApp.ActiveSheet.Rows[2].Delete; b. ExcelApp.ActiveSheet.Columns[1].Delete; 18) 預覽列印工作表: ExcelApp.ActiveSheet.PrintPreview; 19) 列印輸出工作表: ExcelApp.ActiveSheet.PrintOut; 20) 工作表儲存: if not ExcelApp.ActiveWorkBook.Saved then ExcelApp.ActiveSheet.PrintPreview; 21) 工作表另存新檔: ExcelApp.SaveAs( ‘C:\Excel\Demo1.xls‘ ); 22) 放棄存檔: ExcelApp.ActiveWorkBook.Saved := True; 23) 關閉活頁簿: ExcelApp.WorkBooks.Close; 24) 退出 Excel: ExcelApp.Quit;