0

我只是尝试为 DLL Aspose 单元 8.4.0 设置新的引用。而且我看到了很多错误,因为新版本的 aspose 单元不支持的属性或对象。

- Aspose.Cells.Rows
-Aspose.Cells.Columns
-Aspose.Cells.Comments
-Aspose.Cells.BuiltInDocumentProperties
-Aspose.Cells.Validations
-Aspose.Cells.Styles
-Aspose.Cells.Worksheets

我在新的 8.4.0 中找到了上述内容的一些替代品。假设细胞;

-Aspose.Cells.Row
-Aspose.Cells.Column
-Aspose.Cells.Comment
-________
-Aspose.Cells.Validation
-Aspose.Cells.Style
-Aspose.Cells.Worksheet

我现在更改了这些属性,但没有找到BuiltInDocumentProperties的任何属性。什么可以代替这个。?有人可以帮忙吗?

4

1 回答 1

0

它位于 Aspose.Cells.Properties 命名空间中。

Aspose.Cells.Workbook workbook = new Workbook();
// Get reference to property collection
Aspose.Cells.Properties.BuiltInDocumentPropertyCollection properties = workbook.BuiltInDocumentProperties;
// Get individual properties
String author = properties.Author;
String company = properties.Company;

我为 Aspose 工作,担任开发人员宣传员。

于 2015-03-21T03:29:00.967 回答