当前位置:文档之家› C#对excel操作方法

C#对excel操作方法

C#对excel操作方法
C#对excel操作方法

/*---------------------------------------------------------------- // 版权:https://www.doczj.com/doc/e01952488.html,

//

// 文件名:OpeareExcel

// 文件功能描述:用C#来操作Excel,

//

// 作者:XingFuStar

// 日期:年月日

//

// 当前版本:V1.0.2

//

// 修改日期:年月日

// 修改内容:增加打开保存等功能

// 修改日期:年月日

// 修改内容:修改关闭Excel时提供保存选择

//----------------------------------------------------------------*/ using System;

using Microsoft.Office.Core;

using Excel;

namespace XingFuStudio.ExcelEdit

{

class ExcelEdit

{

string myFileName;

Excel.Application myExcel;

Excel.Workbook myWorkBook;

///

///构造函数,不创建Excel工作薄

///

public ExcelEdit()

{

//请不要删除以下信息

//版权:https://www.doczj.com/doc/e01952488.html,

}

///

///创建Excel工作薄

///

public void CreateExcel()

{

myExcel = new Excel.Application();

myWorkBook = myExcel.Application.Workbooks.Add(true);

}

///

///显示Excel

///

public void ShowExcel()

{

myExcel.Visible = true;

}

///

///将数据写入Excel

///

///要写入的二维数组数据

///Excel中的起始行

///Excel中的起始列

public void WriteData(string[,] data, int startRow, int startColumn)

{

int rowNumber = data.GetLength(0);

int columnNumber = data.GetLength(1);

for (int i = 0; i < rowNumber; i++)

{

for (int j = 0; j < columnNumber; j++)

{

//在Excel中,如果某单元格以单引号“'”开头,表示该单元格为纯文本,因此,我们在每个单元格前面加单引号。

myExcel.Cells[startRow + i, startColumn + j] = "'" + data[i, j];

}

}

}

///

///将数据写入Excel

///

///要写入的字符串

///写入的行

///写入的列

public void WriteData(string data, int row, int column)

{

myExcel.Cells[row, column] = data;

}

///

///将数据写入Excel

///

///要写入的数据表

///Excel中的起始行

///Excel中的起始列

public void WriteData(System.Data.DataTable data, int startRow, int startColumn)

{

for (int i = 0; i <= data.Rows.Count - 1; i++)

{

for (int j = 0; j <= data.Columns.Count - 1; j++)

{

//在Excel中,如果某单元格以单引号“'”开头,表示该单元格为纯文本,因此,我们在每个单元格前面加单引号。

myExcel.Cells[startRow + i, startColumn + j] = "'"+ data.Rows[i][j].ToString(); }

}

}

///

///读取指定单元格数据

///

///行序号

///列序号

///该格的数据

public string ReadData(int row, int column)

{

Excel.Range range = myExcel.get_Range(myExcel.Cells[row, column], myExcel.Cells[row, column]);

return range.Text.ToString();

}

///

///向Excel中插入图片

///

///图片的绝对路径加文件名

public void InsertPictures(string pictureName)

{

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.ActiveSheet;

//后面的数字表示位置,位置默认

worksheet.Shapes.AddPicture(pictureName, MsoTriState.msoFalse, MsoTriState.msoTrue, 10, 10, 150, 150);

}

///

///向Excel中插入图片

///

///图片的绝对路径加文件名

///左边距

///右边距

///

///

public void InsertPictures(string pictureName, int left, int top, int width, int heigth) {

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.ActiveSheet;

worksheet.Shapes.AddPicture(pictureName, MsoTriState.msoFalse, MsoTriState.msoTrue, top, left, heigth, width);

}

///

///重命名工作表

///

///工作表序号,从左到右,从开始

///新的工作表名

public void ReNameSheet(int sheetNum, string newSheetName)

{

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.Worksheets[sheetNum];

https://www.doczj.com/doc/e01952488.html, = newSheetName;

}

///

///重命名工作表

///

///原有工作表名

///新的工作表名

public void ReNameSheet(string oldSheetName, string newSheetName)

{

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.Worksheets[oldSheetName]; https://www.doczj.com/doc/e01952488.html, = newSheetName;

}

///

///新建工作表

///

///工作表名

public void CreateWorkSheet(string sheetName)

{

Excel.Worksheet newWorksheet =

(Excel.Worksheet)myWorkBook.Worksheets.Add(Type.Missing, Type.Missing, Type.Missing, Type.Missing);

https://www.doczj.com/doc/e01952488.html, = sheetName;

}

///

///激活工作表

///

///工作表名

public void ActivateSheet(string sheetName)

{

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.Worksheets[sheetName];

worksheet.Activate();

}

///

///激活工作表

///

///工作表序号

public void ActivateSheet(int sheetNum)

{

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.Worksheets[sheetNum];

worksheet.Activate();

}

///

///删除一个工作表

///

///删除的工作表名

public void DeleteSheet(int sheetNum)

{

((Excel.Worksheet)myWorkBook.Worksheets[sheetNum]).Delete();

}

///

///删除一个工作表

///

///删除的工作表序号

public void DeleteSheet(string sheetName)

{

((Excel.Worksheet)myWorkBook.Worksheets[sheetName]).Delete();

}

///

///合并单元格

///

///起始行

///起始列

///结束行

///结束列

public void CellsUnite(int startRow, int startColumn, int endRow, int endColumn)

{

Excel.Range range = myExcel.get_Range(myExcel.Cells[startRow, startColumn], myExcel.Cells[endRow, endColumn]);

range.MergeCells = true;

}

///

///单元格文字对齐方式

///

///起始行

///起始列

///结束行

///结束列

///水平对齐

///垂直对齐

public void CellsAlignment(int startRow, int startColumn, int endRow, int endColumn, ExcelHAlign hAlign, ExcelVAlign vAlign)

{

Excel.Range range = myExcel.get_Range(myExcel.Cells[startRow, startColumn], myExcel.Cells[endRow, endColumn]);

range.HorizontalAlignment = hAlign;

range.VerticalAlignment = vAlign;

}

///

///绘制指定单元格的边框

///

///起始行

///起始列

///结束行

///结束列

public void CellsDrawFrame(int startRow, int startColumn, int endRow, int endColumn) {

CellsDrawFrame(startRow, startColumn, endRow, endColumn,

true, true, true, true, true, true, false, false,

LineStyle.连续直线, BorderWeight.细, ColorIndex.自动);

}

///

///绘制指定单元格的边框

///

///起始行

///起始列

///结束行

///结束列

///是否画上外框

///是否画下外框

///是否画左外框

///是否画右外框

///是否画水平内框

///是否画垂直内框

///是否画斜向下线

///是否画斜向上线

///线类型

///线粗细

///线颜色

public void CellsDrawFrame(int startRow, int startColumn, int endRow, int endColumn, bool isDrawTop, bool isDrawBottom, bool isDrawLeft, bool isDrawRight,

bool isDrawHInside, bool isDrawVInside, bool isDrawDiagonalDown, bool isDrawDiagonalUp, LineStyle lineStyle, BorderWeight borderWeight, ColorIndex color)

{

//获取画边框的单元格

Excel.Range range = myExcel.get_Range(myExcel.Cells[startRow, startColumn], myExcel.Cells[endRow, endColumn]);

//清除所有边框

range.Borders[XlBordersIndex.xlEdgeTop].LineStyle = LineStyle.无;

range.Borders[XlBordersIndex.xlEdgeBottom].LineStyle = LineStyle.无;

range.Borders[XlBordersIndex.xlEdgeLeft].LineStyle = LineStyle.无;

range.Borders[XlBordersIndex.xlEdgeRight].LineStyle = LineStyle.无;

range.Borders[XlBordersIndex.xlInsideHorizontal].LineStyle = LineStyle.无;

range.Borders[XlBordersIndex.xlInsideVertical].LineStyle = LineStyle.无;

range.Borders[XlBordersIndex.xlDiagonalDown].LineStyle = LineStyle.无;

range.Borders[XlBordersIndex.xlDiagonalUp].LineStyle = LineStyle.无;

//以下是按参数画边框

if (isDrawTop)

{

range.Borders[XlBordersIndex.xlEdgeTop].LineStyle = lineStyle;

range.Borders[XlBordersIndex.xlEdgeTop].Weight = borderWeight;

range.Borders[XlBordersIndex.xlEdgeTop].ColorIndex = color;

}

if (isDrawBottom)

{

range.Borders[XlBordersIndex.xlEdgeBottom].LineStyle = lineStyle;

range.Borders[XlBordersIndex.xlEdgeBottom].Weight = borderWeight;

range.Borders[XlBordersIndex.xlEdgeBottom].ColorIndex = color;

}

if (isDrawLeft)

{

range.Borders[XlBordersIndex.xlEdgeLeft].LineStyle = lineStyle;

range.Borders[XlBordersIndex.xlEdgeLeft].Weight = borderWeight;

range.Borders[XlBordersIndex.xlEdgeLeft].ColorIndex = color;

}

if (isDrawRight)

{

range.Borders[XlBordersIndex.xlEdgeRight].LineStyle = lineStyle;

range.Borders[XlBordersIndex.xlEdgeRight].Weight = borderWeight;

range.Borders[XlBordersIndex.xlEdgeRight].ColorIndex = color;

}

if (isDrawVInside)

{

range.Borders[XlBordersIndex.xlInsideVertical].LineStyle = lineStyle;

range.Borders[XlBordersIndex.xlInsideVertical].Weight = borderWeight;

range.Borders[XlBordersIndex.xlInsideVertical].ColorIndex = color;

}

if (isDrawHInside)

{

range.Borders[XlBordersIndex.xlInsideHorizontal].LineStyle = lineStyle;

range.Borders[XlBordersIndex.xlInsideHorizontal].Weight = borderWeight;

range.Borders[XlBordersIndex.xlInsideHorizontal].ColorIndex = color;

}

if (isDrawDiagonalDown)

{

range.Borders[XlBordersIndex.xlDiagonalDown].LineStyle = lineStyle;

range.Borders[XlBordersIndex.xlDiagonalDown].Weight = borderWeight;

range.Borders[XlBordersIndex.xlDiagonalDown].ColorIndex = color;

}

if (isDrawDiagonalUp)

{

range.Borders[XlBordersIndex.xlDiagonalUp].LineStyle = lineStyle;

range.Borders[XlBordersIndex.xlDiagonalUp].Weight = borderWeight;

range.Borders[XlBordersIndex.xlDiagonalUp].ColorIndex = color;

}

}

///

///单元格背景色及填充方式

///

///起始行

///起始列

///结束行

///结束列

///颜色索引

public void CellsBackColor(int startRow, int startColumn, int endRow, int endColumn, ColorIndex color)

{

Excel.Range range = myExcel.get_Range(myExcel.Cells[startRow, startColumn], myExcel.Cells[endRow, endColumn]);

range.Interior.ColorIndex = color;

range.Interior.Pattern = Pattern.Solid;

}

///

///单元格背景色及填充方式

///

///起始行

///起始列

///结束行

///结束列

///颜色索引

///填充方式

public void CellsBackColor(int startRow, int startColumn, int endRow, int endColumn, ColorIndex color, Pattern pattern)

{

Excel.Range range = myExcel.get_Range(myExcel.Cells[startRow, startColumn], myExcel.Cells[endRow, endColumn]);

range.Interior.ColorIndex = color;

range.Interior.Pattern = pattern;

}

///

///设置行高

///

///起始行

///结束行

///行高

public void SetRowHeight(int startRow, int endRow, int height)

{

//获取当前正在使用的工作表

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.ActiveSheet;

Excel.Range range = (Excel.Range)worksheet.Rows[startRow.ToString() + ":" + endRow.ToString(), System.Type.Missing];

range.RowHeight = height;

}

///

///自动调整行高

///

///列号

public void RowAutoFit(int rowNum)

{

//获取当前正在使用的工作表

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.ActiveSheet;

Excel.Range range = (Excel.Range)worksheet.Rows[rowNum.ToString() + ":" + rowNum.ToString(), System.Type.Missing];

range.EntireColumn.AutoFit();

}

///

///设置列宽

///

///起始列(列对应的字母)

///结束列(列对应的字母)

///

public void SetColumnWidth(string startColumn, string endColumn, int width)

{

//获取当前正在使用的工作表

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.ActiveSheet;

Excel.Range range = (Excel.Range)worksheet.Columns[startColumn + ":" + endColumn, System.Type.Missing];

range.ColumnWidth = width;

}

///

///设置列宽

///

///起始列

///结束列

///

public void SetColumnWidth(int startColumn, int endColumn, int width)

{

string strStartColumn = GetColumnName(startColumn);

string strEndColumn = GetColumnName(endColumn);

//获取当前正在使用的工作表

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.ActiveSheet;

Excel.Range range = (Excel.Range)worksheet.Columns[strStartColumn + ":"+ strEndColumn, System.Type.Missing];

range.ColumnWidth = width;

}

///

///自动调整列宽

///

///列号

public void ColumnAutoFit(string column)

{

//获取当前正在使用的工作表

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.ActiveSheet;

Excel.Range range = (Excel.Range)worksheet.Columns[column + ":" + column,

System.Type.Missing];

range.EntireColumn.AutoFit();

}

///

///自动调整列宽

///

///列号

public void ColumnAutoFit(int columnNum)

{

string strcolumnNum = GetColumnName(columnNum);

//获取当前正在使用的工作表

Excel.Worksheet worksheet = (Excel.Worksheet)myExcel.ActiveSheet;

Excel.Range range = (Excel.Range)worksheet.Columns[strcolumnNum + ":" + strcolumnNum, System.Type.Missing];

range.EntireColumn.AutoFit();

}

///

///字体颜色

///

///起始行

///起始列

///结束行

///结束列

///颜色索引

public void FontColor(int startRow, int startColumn, int endRow, int endColumn, ColorIndex color)

{

Excel.Range range = myExcel.get_Range(myExcel.Cells[startRow, startColumn], myExcel.Cells[endRow, endColumn]);

range.Font.ColorIndex = color;

}

///

///字体样式(加粗,斜体,下划线)

///

///起始行

///起始列

///结束行

///结束列

///是否加粗

///是否斜体

///下划线类型

public void FontStyle(int startRow, int startColumn, int endRow, int endColumn, bool isBold, bool isItalic, UnderlineStyle underline)

{

Excel.Range range = myExcel.get_Range(myExcel.Cells[startRow, startColumn], myExcel.Cells[endRow, endColumn]);

range.Font.Bold = isBold;

range.Font.Underline = underline;

range.Font.Italic = isItalic;

}

///

///单元格字体及大小

///

///起始行

///起始列

///结束行

///结束列

///字体名称

///字体大小

public void FontNameSize(int startRow, int startColumn, int endRow, int endColumn,string fontName, int fontSize)

{

Excel.Range range = myExcel.get_Range(myExcel.Cells[startRow, startColumn], myExcel.Cells[endRow, endColumn]);

https://www.doczj.com/doc/e01952488.html, = fontName;

range.Font.Size = fontSize;

}

///

///打开一个存在的Excel文件

///

///Excel完整路径加文件名

public void Open(string fileName)

{

myExcel = new Excel.Application();

myWorkBook = myExcel.Workbooks.Add(fileName);

myFileName = fileName;

}

///

///保存Excel

///

///保存成功返回True

public bool Save()

{

if (myFileName == "")

{

return false;

}

else

{

try

{

myWorkBook.Save();

return true;

}

catch (Exception ex)

{

return false;

}

}

}

///

/// Excel文档另存为

///

///保存完整路径加文件名

///保存成功返回True

public bool SaveAs(string fileName)

{

try

{

myWorkBook.SaveAs(fileName, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Excel.XlSaveAsAccessMode.xlExclusive, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);

return true;

}

catch (Exception ex)

{

return false;

}

}

///

///关闭Excel

///

public void Close()

{

myWorkBook.Close(Type.Missing, Type.Missing, Type.Missing);

myExcel.Quit();

myWorkBook = null;

myExcel = null;

GC.Collect();

}

///

///关闭Excel

///

///是否保存

public void Close(bool isSave)

{

myWorkBook.Close(isSave, Type.Missing, Type.Missing); myExcel.Quit();

myWorkBook = null;

myExcel = null;

GC.Collect();

}

///

///关闭Excel

///

///是否保存

///存储文件名

public void Close(bool isSave,string fileName)

{

myWorkBook.Close(isSave, fileName, Type.Missing);

myExcel.Quit();

myWorkBook = null;

myExcel = null;

GC.Collect();

}

#region私有成员

private string GetColumnName(int number)

{

int h, l;

h = number / 26;

l = number % 26;

if (l == 0)

{

h -= 1;

l = 26;

}

string s = GetLetter(h) + GetLetter(l);

return s;

}

private string GetLetter(int number)

{

switch (number)

{

case 1:

return"A";

case 2:

return"B";

case 3:

return"C";

case 4:

return"D";

case 5:

return"E";

case 6:

return"F";

case 7:

return"G";

case 8:

return"H";

case 9:

return"I";

case 10:

return"J";

case 11:

return"K";

case 12:

return"L";

case 13:

return"M";

case 14:

return"N";

case 15:

return"O";

case 16:

return"P";

case 17:

return"Q";

case 18:

return"R";

case 19:

return"S";

case 20:

return"T";

case 21:

return"U";

case 22:

return"V";

case 23:

return"W";

case 24:

return"X";

case 25:

return"Y";

case 26:

return"Z";

default:

return""; }

}

#endregion

}

///

///水平对齐方式

///

public enum ExcelHAlign {

常规= 1,

靠左,

居中,

靠右,

填充,

两端对齐,

跨列居中,

分散对齐

}

///

///垂直对齐方式

///

public enum ExcelVAlign {

靠上= 1,

居中,

靠下,

两端对齐,

分散对齐

}

///

///线粗

///

public enum BorderWeight {

极细= 1,

细= 2,

粗= -4138,

极粗= 4

}

///

///线样式

///

public enum LineStyle

{

连续直线= 1,

短线= -4115,

线点相间= 4,

短线间两点= 5,

点= -4118,

双线= -4119,

无= -4142,

少量倾斜点= 13

}

///

///下划线方式

///

public enum UnderlineStyle

{

无下划线= -4142,

双线= - 4119,

双线充满全格= 5,

单线= 2,

单线充满全格= 4

}

///

///单元格填充方式

///

public enum Pattern

{

Automatic = -4105,

Checker = 9,

CrissCross = 16,

Down = -4121,

Gray16 = 17,

Gray25 = -4124,

Gray50 = -4125,

Gray75 = -4126,

Gray8 = 18,

Grid = 15,

Horizontal = -4128,

LightDown = 13,

LightHorizontal = 11,

LightUp = 14,

LightVertical = 12,

None = -4142,

SemiGray75 = 10,

Solid = 1,

Up = -4162,

Vertical = -4166

}

///

///常用颜色定义,对就Excel中颜色名

///

public enum ColorIndex

{

无色= -4142,

自动= -4105,

黑色= 1,

褐色= 53,

橄榄= 52,

深绿= 51,

深青= 49,

深蓝= 11,

靛蓝= 55,

灰色= 56,

深红= 9,

橙色= 46,

深黄= 12,

绿色= 10,

青色= 14,

蓝色= 5,

蓝灰= 47,

灰色= 16,

红色= 3,

浅橙色= 45,

酸橙色= 43,

海绿= 50,

水绿色= 42,

浅蓝= 41,

紫罗兰= 13,

灰色= 48,

粉红= 7,

金色= 44,

黄色= 6,

鲜绿= 4,

青绿= 8,

天蓝= 33,

梅红= 54,

灰色= 15,

玫瑰红= 38,

茶色= 40,

浅黄= 36,

浅绿= 35,

浅青绿= 34,

淡蓝= 37,

淡紫= 39,

白色= 2

}

}

相关主题
文本预览
相关文档 最新文档