VbaProjectReference classe

VbaProjectReference classe

Représente la référence du projet VBA.

Le type VbaProjectReference expose les membres suivants :

Propriétés

PropriétéDescription
typeObtient le type de cette référence.
nameObtient et définit le nom de la référence.
libidObtient et définit la Libid de la référence.
twiddledlibidObtient et définit la Libid tordue de la référence.
extended_libidObtient et définit la Libid étendue de la référence.
relative_libidObtient et définit l’identifiant du projet VBA référencé avec un chemin relatif.

Méthodes

MéthodeDescription
copy(source)

Exemple

from aspose.cells import Workbook

# Instantiating a Workbook object
workbook = Workbook()
#  Init VBA project.
vbaProject = workbook.vba_project
#  Add vba project reference
vbaProject.references.add_registered_reference("stdole", "*\\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\\Windows\\system32\\stdole2.tlb#OLE Automation")
# Saving the Excel file
workbook.save("book1.xlsm")

Voir également