Aspose.Cells.dll Aspose.Cells.chm超級好用 導出excel速度杠杠的,API也有注釋,操作Excel的利器,不需要微軟的office支持。
Aspose.Cells包含有一個類庫,支持所有Excel格式類型的操作。它是一個非圖形表格管理庫,可適用於任何類型的應用程序(ASP.NET Web應用程序或Windows桌麵應用程序)。此外,組件也可以用於如ASP,PHP和Python的一些其他的解決方案等
Aspose.Cells提供了靈活的組件,能夠用.NET應用程序來創建和管理,在服務器上安裝而不需要Microsoft Excel電子表格。 功能豐富的組件,提供的不僅僅是基本數據的輸入和輸出。 有了這些組件開發人員可以導入和導出每一個具體的數據,表格和格式,在各個層麵導入圖像,應用複雜的計算公式,並將Excel的數據,保存為各種格式等等。
Aspose.Cells允許開發人員創建和管理Excel, 而不需要安裝Microsoft Excel或者Microsoft Office Excel。 所有Aspose組件是完全獨立的,無隸屬關係,也沒有授權,讚助,或以其他方式的微軟公司批準。 總之Aspose.Cells是一個更好的選擇 , 自動化 ,安全,穩定,可擴展性延伸,速度快,功能強大。
1.創建Workbook和Worksheet
workbook&worksheet1
Workbook wb = new Workbook();
wb.Worksheets.Clear();
wb.Worksheets.Add("New Worksheet1");//New Worksheet1是Worksheet的name
Worksheet ws = wb.Worksheets[0];
如果直接用下邊兩句則直接使用默認的第一個Worksheet:
workbook&worksheet2
Workbook wb = new Workbook();
Worksheet ws = wb.Worksheets[0];
2.給Cell賦值設置背景顏色並加背景色:
cell1
Cell cell = ws.Cells[0, 0];
cell.PutValue("填充"); //必須用PutValue方法賦值
cell.Style.ForegroundColor = Color.Yellow;
cell.Style.Pattern = BackgroundType.Solid;
cell.Style.Font.Size = 10;
cell.Style.Font.Color = Color.Blue;
自定義格式:
cell2
cell.Style.Custom = "ddd, dd mmmm 'yy";
旋轉字體:
cell3
cell.Style.Rotation = 90;
3.設置Range並賦值加Style
range1
int styleIndex = wb.Styles.Add();
Style style = wb.Styles[styleIndex];
style.ForegroundColor = Color.Yellow;
style.Pattern = BackgroundType.Solid;
style.Font.Size = 10;
//從Cells[0,0]開始創建一個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不能直接設置Style.必須先定義style再將style賦給Style.其他設置和Cell基本一致.Range的Style會覆蓋Cell定義的Style.另外必須先賦值再傳Style.否則可能不生效.
4.使用Formula:
formula1
ws.Cells[0,0].PutValue(1);
ws.Cells[1,0].PutValue(20);
ws.Cells[2,0].Formula="SUM(A1:B1)";
wb.CalculateFormula(true);
Save Excel文件的時候必須調用CalculateFormula方法計算結果.
5.插入圖片:
pictures1
string imageUrl = System.Web.HttpContext.Current.Server.MapPath("~/images/log_topleft.gif");
ws.Pictures.Add(10, 10, imageUrl);
6.使用Validations:
validations1
Cells cells = ws.Cells;
cells[12, 0].PutValue("Please enter a number other than 0 to 10 in B1 to activate data validation:");
cells[12, 0].Style.IsTextWrapped = true;
cells[12, 1].PutValue(5);
Validations validations = totalSheet.Validations;
Validation validation = validations[validations.Add()];
//Set the data validation type
validation.Type = ValidationType.WholeNumber;
//Set the operator for the data validation
validation.Operator = OperatorType.Between;
//Set the value or expression associated with the data validation
validation.Formula1 = "0";
//the value or expression associated with the second part of the data validation
validation.Formula2 = "10";
validation.ShowError = true;
//Set the validation alert style
validation.AlertStyle = ValidationAlertType.Information;
//Set the title of the data-validation error dialog box
validation.ErrorTitle = "Error";
//Set the data validation error message
validation.ErrorMessage = " Enter value between 0 to 10";
//Set the data validation input message
validation.InputMessage = "Data Validation using Condition for Numbers";
validation.IgnoreBlank = true;
validation.ShowInput = true;
validation.ShowError = true;
//設置Validations的區域,因為現在要Validations的位置是12,1,所以下麵設置對應的也要是12,1
CellArea cellArea;
cellArea.StartRow = 12;
cellArea.EndRow = 12;
cellArea.StartColumn = 1;
cellArea.EndColumn = 1;
validation.AreaList.Add(cellArea);
7.將數據導入指定區域
cells.ImportDataTable(dt1, false, "B4"); //將結果集從EXCEL中第B列第4行的位置開始導入
8.設置統計列
//設置工作表的第4行第K列為一個統計列
//cells[3, MES.Common.Excel_GetColumnIndex("K")].Formula = "=SUM(B6:B" + dt.Rows.Count + 6 + ")";
cells[2, 1].Formula = "=SUM(B4:B5)";
9.設置該樣式的4個邊框線的樣式
//style.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin;
//style.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thin;
//style.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin;
//style.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thin;
70KB/03-27
係統其他
下載21.5M/02-01
遊戲補丁
下載231KB/09-26
係統優化
下載76.4M / 03-25
立即下載55M / 06-05
立即下載237.9M / 04-13
立即下載140.5M / 03-06
立即下載900.9M / 03-02
立即下載96.2M / 07-06
立即下載311.2M / 07-06
立即下載335M / 07-06
立即下載200M / 07-06
立即下載413.8M / 07-06
立即下載353.9M / 06-05
立即下載131.8M / 04-13
立即下載230.8M / 03-03
立即下載195.6M / 03-03
立即下載165.4M / 03-03
立即下載45.6M / 09-08
立即下載665.2M / 07-06
立即下載2.84G / 07-06
立即下載93M / 07-06
立即下載338.3M / 07-06
立即下載1.38G / 07-26
立即下載488.3M / 07-16
立即下載109.8M / 06-03
立即下載142M / 01-08
立即下載1.2M / 11-23
立即下載548.8M / 04-13
立即下載1.6M / 04-13
立即下載1.48G / 03-18
立即下載646.6M / 03-03
立即下載133.7M / 03-03
立即下載325.8M / 06-07
立即下載60M / 04-29
立即下載254M / 04-25
立即下載659M / 04-23
立即下載1M / 12-26
立即下載253.4M / 12-08
立即下載253M / 12-08
立即下載1.19G / 11-16
立即下載110.5M / 04-23
立即下載26.7M / 03-16
立即下載488.3M / 07-16
立即下載248.9M / 12-08
立即下載248.9M / 12-08
立即下載201.2M / 04-13
立即下載100.6M / 03-06
立即下載148.9M / 03-06
立即下載1.12G / 07-06
立即下載1.25G / 07-06
立即下載9.48G / 07-06
立即下載50KB / 07-06
立即下載116.2M / 04-10
立即下載1.92G / 04-17
立即下載201.5M / 04-13
立即下載7.31G / 07-01
立即下載94.3M / 07-06
立即下載2.48G / 07-06
立即下載7.63G / 07-06
立即下載1M / 07-06
立即下載778.1M / 07-06
立即下載509.7M / 07-06
立即下載561.8M / 07-11
立即下載1.32G / 01-19
立即下載72M / 07-06
立即下載548.7M / 07-06
立即下載1.00G / 07-06
立即下載9.13G / 07-06
立即下載126.2M / 07-06
立即下載72M / 07-06
立即下載105.1M / 07-06
立即下載132M / 07-06
立即下載