To revisit a post from 6 months ago, Does Aspose.Cells handle converting the contents of a GridView control to Excel? Or, does anyone have a snippet of code that will do this? A few months ago, Warren Zhang said they were implementing this next week.
And if you update Aspose.Cells, you have to refere to Aspose.Cells for Net 2.Otherwise, you could not use Cells.ImportGridView method.
In this fix,we use Cell.GetStyle and SetStyle method replace the property of Cell.Style. The two methods will save more memory usage than cell.Style property.
If you want to set style of the cell, please change your codes as :
//Getting the style of the cell.
Style style = cell.GetStyle();
//Setting the property of the style.
.......
//Setting the style of the cell
cell.SetStyle(style);
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
Enables storage, such as cookies, related to analytics.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.