C#實現向excel中插入行列,以及設置單元格合並居中效果


插入空行:

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());
        }


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM