/新建工作簿 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é)果. |
|
來(lái)自: yuxinrong > 《Aspose.Cells》