إضافة خصائص مخصصة مرئية داخل لوحة معلومات المستند

مثال

يضيف نموذج التعليمات البرمجية التالي خاصيتين مخصصتين. الخاصية الأولى بدون أي نوع والخاصية الثانية لها نوع التاريخ والوقت. بمجرد فتح ملف Excel الناتج الذي تم إنشاؤه بواسطة هذا الرمز ، سترى هاتين الخاصيتين داخل لوحة معلومات المستند.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(AddingCustomProperties.class);
// Create workbook object
Workbook workbook = new Workbook(FileFormatType.XLSX);
// Add simple property without any type
workbook.getContentTypeProperties().add("MK31", "Simple Data");
// Add date time property with type
workbook.getContentTypeProperties().add("MK32", "04-Mar-2015", "DateTime");
// Save the workbook
workbook.save(dataDir + "output.xlsx");

مقالات لها صلة