Search
Follow Us
Categories
- Success Stories(157)
Archives
Category Archive: Aspose.Cells Product Family
Aspose.Cells V4.5.1 Released!
In this new version, we greatly enhanced conversion features, including Pdf conversion, Chart2Image conversion and Sheet2Image conversion. And many other features and enhancements are included: http://www.aspose.com/community/files/51/file-format-components/aspose.cells/default.aspx .… Continue Reading
Posted in Aspose.Cells Product Family
Comparing VSTO with Aspose.Cells for .NET
In this article, we describe some comparison measurements of VSTO (Visual Studio Tools for Office) and Aspose.Cells for .NET on different aspects related to Spreadsheet tasks. We also list a few concerns and issues that you should know before making a final decision on adopting any solution.
Please check the complete article: http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/comparing-vsto-with-aspose-cells-for-net.html… Continue Reading
Posted in Aspose.Cells Product Family
Aspose.Cells for Java Vs Open Source Competitors
In this article, we try to examine a feature comparison between Aspose.Cells for Java, JExcelAPI and POI-HSSF. Today we find different spreadsheet components that really promise to have feature-rich API for spreadsheet management. The article observes the feature analysis of Aspose.Cells for Java with its open-source competitors. We provide a summary of the valuable features of all three components. Moreover, we state some known limitations and deficiencies of the components if they have. We also present a comparison table for … Continue Reading
Aspose.Cells 4.5.0.0 Released
We have just released Aspose.Cells v4.5.0.0: http://www.aspose.com/community/files/51/file-format-components/aspose.cells/default.aspx .
In these new release, we not only add new features as usual, but also shape it’s performance. Aspose.Cells aims to provide richest feature set and highest compatibility for different Excel files. In the mean time, performance is a very critical issue for our product. We make many performance testing and enhancement in v4.5.… Continue Reading
Posted in Aspose.Cells Product Family
Aspose.Grid for .NET V2.0.0.0 Released!
Many web applications are running on web hosting environments with more strict security limitations. So we periodically get the requests to run Aspose.Grid.Web on medium trust security level.
Now we make it. Please download the new release at http://www.aspose.com/community/files/53/visual-components/aspose.grid/default.aspx .
And we also make many enhancement on .NET 2.0.… Continue Reading
Posted in Aspose.Cells Product Family
Cell.Style property vs Cell.GetStyle/SetStyle method
Since v4.4.2, we add two new methods to format a cell: Cell.GetStyle method and Cell.SetStyle method.
So now you can use the following two ways to format a cell:
1. use Cell.Style property
[C#]
cell.Style.Font.IsBold = true;
[VB.NET]
cell.Style.Font.IsBold = True
2. use Cell.GetStyle and Cell.SetStyle method
[C#]
Style style = cell.GetStyle();
style.Font.IsBold = true;
cell.SetStyle(style);
[VB.NET]
Dim style as Style = cell.GetStyle()
style.Font.IsBold = True
cell.SetStyle(style)
You can see that the first approach is easy and straight-forward. So why … Continue Reading
Changes in Aspose.Cells for Reporting Services V1.1.1
In Aspose.Cells for Reporting Service v1.1, we provide a client tool to enable users to design reports in MS Excel. This tool is an Excel addin and we developed it totally with C#.
Because we develop the tool in C#, we have to use Excel interop to manipulate files. Some users found problems when using the client tool in their MS Excel. After investigating their problems, we found most of problem are caused by MS Office, Office PIA, .NET Framework or others. … Continue Reading
Posted in Aspose.Cells Product Family
Aspose.Cells for Java V1.9.4 Released
Dear Customers,
We have released Aspose.Cells for Java V1.9.4!
What’s New?
- Supports to add rich text for shapes such as Arc, Oval, Rectangle, Comment, TextBox
- Supports all type of placement for shape
- Supports to read all shapes from template
- Supports to set array in SmartMarker
What’s Improved?
- Add new methods to manipulate shape’s position and size, and deprecated some old methods
- Add some demo codes and templates for new API
- Replace deprecated API invocation with new API in demos
What’s … Continue Reading
Posted in Aspose.Cells Product Family