码迷,mamicode.com
首页 > Windows程序 > 详细

C#实现向excel中插入行列,以及设置单元格合并居中效果

时间:2017-09-02 15:47:49      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:cep   单元   get_range   [1]   type   direct   cal   excel   etl   

插入空行:

Microsoft.Office.Interop.Excel.Workbook xlsWorkbook;

Microsoft.Office.Interop.Excel.Worksheet xlsSheet = xlsWorkbook.Worksheets[1];

Microsoft.Office.Interop.Excel.Range xlsRow=(Microsoft.Office.Interop.Excel.Range)xlsSheet.Rows[3,MisValue];

xlsRow.Insert(Microsoft.Office.Interop.Excel.xlShiftDown,MisValue);

 

插入空列:

Excel.Range xlsColumns = (Excel.Range)ws.Columns[index, Type.Missing];

            xlsColumns.Insert(Excel.XlInsertShiftDirection.xlShiftToRight, Type.Missing);

            string columnLetter = GetLetter(index - 1);
            ws.Cells[2, index] = txtBoxExpenseType.Text.Trim();
            Excel.Range newExpenseTypeRange = ws.get_Range(string.Format("{0}{1}", columnLetter, 2), string.Format("{0}{1}", columnLetter, 3));
            newExpenseTypeRange.MergeCells = true;
            newExpenseTypeRange.VerticalAlignment = Excel.XlVAlign.xlVAlignCenter;
            newExpenseTypeRange.HorizontalAlignment = Excel.XlVAlign.xlVAlignCenter;

 

 

 

public static string GetLetter(int index)
        {
            if (index < 0) { throw new Exception("invalid parameter"); }

            List chars = new List();
            do
            {
                if (chars.Count > 0) index--;
                chars.Insert(0, ((char)(index % 26 + (int)‘A‘)).ToString());
                index = (int)((index - index % 26) / 26);
            } while (index > 0);

            return String.Join(string.Empty, chars.ToArray());
        }

C#实现向excel中插入行列,以及设置单元格合并居中效果

标签:cep   单元   get_range   [1]   type   direct   cal   excel   etl   

原文地址:http://www.cnblogs.com/guyandianzi/p/7466692.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!