我刚刚尝试为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细胞;
-Aspose.Cells.Row
-Aspose.Cells.Column
-Aspose.Cells.Comment
-________
-Aspose.Cells.Validation
-Aspose.Cells.Style
-Aspose.Cells.Worksheet
我现在更改了这些属性,但没有找到任何 BuiltInDocumentProperties 。 有什么可以替代它。有人可以帮忙吗?
答案 0 :(得分: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担任开发者布道者。