Gestion des propriétés de document en Ruby
Contents
[
Hide
]
Aspose.Cells - Accéder aux propriétés du document
Les développeurs peuvent utiliser l'Index ou le Nom de la propriété pour obtenir une propriété spécifique d’une collection de custom_properties, comme démontré ci-dessous dans l’exemple.
Code Ruby
def get_properties()
data_dir = File.dirname(File.dirname(File.dirname(__FILE__))) + '/data/'
# Instantiating a Workbook object by excel file path
workbook = Rjb::import('com.aspose.cells.Workbook').new(data_dir + 'Book1.xls')
# Retrieve a list of all custom document properties of the Excel file
custom_properties = workbook.getWorksheets().getCustomDocumentProperties()
# Accessng a custom document property by using the property index
puts "Property By Index: " + custom_properties.get(1).to_string
# Accessng a custom document property by using the property name
puts "Property By Name: " + custom_properties.get("Publisher").to_string
end
Aspose.Cells - Ajout de propriétés personnalisées
Pour ajouter des propriétés de document personnalisées en utilisant Aspose.Cells Java pour Ruby, appelez la méthode add_custom_property du module Document.
Code Ruby
def add_custom_property()
data_dir = File.dirname(File.dirname(File.dirname(__FILE__))) + '/data/'
# Instantiating a Workbook object by excel file path
workbook = Rjb::import('com.aspose.cells.Workbook').new(data_dir + 'Book1.xls')
# Retrieve a list of all custom document properties of the Excel file
custom_properties = workbook.getWorksheets().getCustomDocumentProperties()
# Adding a custom document property to the Excel file
custom_properties.add("Publisher", "Aspose")
# Save the document in PDF format
workbook.save(data_dir + "Add_Property.xls")
puts "Added custom property successfully."
end
Aspose.Cells - Supprimer les propriétés personnalisées
Pour supprimer des propriétés de document personnalisées en utilisant Aspose.Cells Java pour Ruby, appelez la méthode remove_custom_property du module Document.
Code Ruby
def remove_custom_property()
data_dir = File.dirname(File.dirname(File.dirname(__FILE__))) + '/data/'
# Instantiating a Workbook object by excel file path
workbook = Rjb::import('com.aspose.cells.Workbook').new(data_dir + 'Book1.xls')
# Retrieve a list of all custom document properties of the Excel file
custom_properties = workbook.getWorksheets().getCustomDocumentProperties()
# Adding a custom document property to the Excel file
custom_properties.remove("Publisher")
# Save the document in PDF format
workbook.save(data_dir + "Removed_Property.xls")
puts "Removed custom property successfully."
end
Télécharger le code en cours d’exécution
Téléchargez Accéder aux propriétés du document (Aspose.Cells) sur l’un des sites de codage social mentionnés ci-dessous :