久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

Aspose.Cells 使用匯總

 yuxinrong 2023-06-05 發(fā)布于安徽

/新建工作簿

Workbook workbook = new Workbook(); //工作簿

Worksheet sheet = workbook.Worksheets[0]; //工作表

Cells cells = sheet.Cells;//單元格

sheet.Protect(ProtectionType.All, "123123", "");//保護(hù)工作表

sheet.Protection.IsSelectingLockedCellsAllowed = false;//設(shè)置只能選擇解鎖單元格

sheet.Protection.IsFormattingColumnsAllowed = true;//設(shè)置可以調(diào)整列

sheet.Protection.IsFormattingRowsAllowed = true;//設(shè)置可以調(diào)整行

Style style1 = workbook.Styles[workbook.Styles.Add()];//新增樣式

style1.HorizontalAlignment = TextAlignmentType.Center;//文字居中

style1.Font.Name = "宋體";//文字字體

style1.Font.Size = 22;//文字大小

style1.IsLocked = false;//單元格解鎖

style1.Font.IsBold = true;//粗體

style1.ForegroundColor = Color.FromArgb(0xaa, 0xcc, 0xbb);//設(shè)置背景色

style1.Pattern = BackgroundType.Solid; //設(shè)置背景樣式

style1.IsTextWrapped = true;//單元格內(nèi)容自動(dòng)換行

style1.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin; //應(yīng)用邊界線 左邊界線

style1.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin; //應(yīng)用邊界線 右邊界線

style1.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thin; //應(yīng)用邊界線 上邊界線

style1.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thin; //應(yīng)用邊界線 下邊界線

cells.Merge(0, 0, 1, 5);//合并單元格

cells[0, 0].PutValue("內(nèi)容");//填寫(xiě)內(nèi)容

cells[0, 0].SetStyle(style1);//給單元格關(guān)聯(lián)樣式

cells.SetRowHeight(0, 20);//設(shè)置行高

cells.SetColumnWidth(1, 30);//設(shè)置列寬

cells[1, 0].Formula = "=AVERAGE(B1:E1)";//給單元格設(shè)置計(jì)算公式

//從Cells[0,0]開(kāi)始創(chuàng)建一個(gè)2行3列的Range

Range range = ws.Cells.CreateRange(0, 0, 2, 3);

Cell cell = range[0, 0];

cell.Style.Font = 9;

range.Style = style;

range.Merge();

注意Range不能直接設(shè)置Style.必須先定義style再將style賦給Style.其他設(shè)置和Cell基本一致.

Range的Style會(huì)覆蓋Cell定義的Style.另外必須先賦值再傳Style.否則可能不生效.

</pre><pre code_snippet_id="1630545" snippet_file_name="blog_20160331_3_2386885" name="code" class="csharp" style="margin-top: 0px; margin-bottom: 0px; padding: 0px; white-space: pre-wrap; word-wrap: break-word; line-height: 18px; background-color: rgb(245, 250, 254);">使用Formula:

sheet.Cells[0,0].PutValue(1);

sheet.Cells[1,0].PutValue(20);

sheet.Cells[2,0].Formula="SUM(A1:B1)";

sheet.CalculateFormula(true);

Save Excel文件的時(shí)候必須調(diào)用CalculateFormula方法計(jì)算結(jié)果.

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶(hù)發(fā)布,,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購(gòu)買(mǎi)等信息,,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多