九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
C#實(shí)現(xiàn)向excel中插入行列,以及設(shè)置單元格合并居中效果

插入空行:

Microsoft.Office.Interop.Excel.Workbook xlsWorkbook;

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

Microsoft.Office.Interop.Excel.RangexlsRow=(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());
       }

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
Excel開(kāi)發(fā)常用方法 - 槑槑 - 博客園
WPF 導(dǎo)出EXCEL 方法
C# 操作 Excel 要點(diǎn)
C# 讀帶復(fù)選框的excel,寫(xiě)excel并設(shè)置字體、邊框、背景色
Dynamo處理Excel——調(diào)用Microsoft.Office.Interop.Excel教程
c# 讀取excel文件的三種方法
更多類(lèi)似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服