Category Archive: Aspose.Cells Product Family

Official blog of Aspose.Cells for .NET, Java & Reporting Services with news of newly supported features, hot fixes, technical articles, tips and videos.

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

Posted in Aspose.Cells Product Family | Tagged

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

Posted in Aspose.Cells Product Family | Tagged , , , ,

WorldMap used Aspose.Cells for .NET to collect Global data at a local level

About WorldMap

Mission Atlas Project icon

The World Missions Atlas Project (MAP) is an attempt to pick up the challenge Charles H. Fahs issued in 1925, namely to utilize the advances in computer and Internet technologies to establish an accurate base map of the world (at least a 1:1,000,000 projection).

Our mission has been comprehensive: To create maps of languages and people groups for each country of the world while linking appropriate missions related data. The status of each language and people group was … Continue Reading

Posted in Aspose.Cells Product Family, Aspose.Cells, Success Stories | Tagged , ,

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 |

Gain Theory implemented Excel export capabilities including charts and tables using Aspose.Cells for .NET

About GAIN THEORY

Gain Theory main logo

Gain Theory fuses data, analytics, technology solutions, and consumer insight capabilities to give marketing and insight professionals the confidence to make smarter, faster business decisions.

The Report Canvas Component is one of the leading products which allows the user to create visual reports based on a pre-loaded dataset. The user can add different components to their canvas including pictures, text boxes, charts, and tables, they then specify the data and how it should be aggregated. The user … Continue Reading

Posted in Aspose.Cells Product Family, Aspose.Cells, Success Stories | Tagged , ,

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 |