我只是尝试为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.的任何属性。什么可以代替这个?有人能帮忙吗?
发布于 2015-03-21 03:29:00
它位于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;我是阿斯坡公司的开发人员,布道者。
https://stackoverflow.com/questions/29159996
复制相似问题