單機遊戲下載單機遊戲下載基地
最新遊戲| 熱門遊戲| 遊戲大全| 遊戲專題
備份還原 硬件驅動 係統優化 搜索查找 鍵盤鼠標 磁盤工具 數據恢複 係統其它 數據備份 係統重裝
當前位置: 首頁係統工具係統其他→ Aspose.Cells.dll

Aspose.Cells.dll

  • Aspose.Cells.dll截圖0
< >
Aspose.Cells.dll下載
好玩 好玩 0
坑爹 坑爹 0
  • 應用語言:中文
  • 應用大小:2.9M
  • 更新時間:2016-05-25 14:46
  • 發行時間:
  • 應用類型:普通
  • 應用標簽:dll
Aspose.Cells.dllAspose.Cells.chm超級好用導出excel速度杠杠的,API也有注釋,操作Excel的利器,不需要微軟的office支持。Aspose.Cells包含有一個類庫,支持所有Excel格式類型的操作。它是一個非圖形表格管理庫,可適用於任何類型的應用程序(ASP.NETWeb應用 [更多]
應用介紹

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;

下載地址

Aspose.Cells.dll

    • dll文件大全
    dll文件大全
    (36) dll文件大全
    dll是電腦係統中非常重要的文件,dll缺失或者損壞經常會在運行程序或啟動遊戲出現問題,表現症狀為“計算機缺少xxx.dll”或“無法找到xxx.dll”等錯誤問題。這裏給大家整理了一些常見的dll文件的下載以及一些dll修複 更多>>

    熱門評論

    最新評論

    發表評論查看所有評論(0)

    昵稱:
    表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
    (您的評論需要經過審核才能顯示)

    配置需求

    關於飛翔|聯係我們|大事記|下載幫助(?)|廣告聯係|版權聲明|網站地圖|友情鏈接

    Copyright 2010-2013單機遊戲下載(R) 版權所有 飛翔下載所有遊戲及軟件下載資源來源互聯網,並由網友上傳分享。如有侵權,請來電來函告之。
    飛翔忠告:抵製不良色情、反動、暴力遊戲 合理安排遊戲時間 享受健康生活【鄂ICP備13011873號-1】