VbaReferenceCollection class
VbaReferenceCollection class
Represents a collection of VbaReference objects.
To learn more, visit the Working with VBA Macros documentation article.
Indexers
Properties
| Name | Description |
|---|
| count | Returns the number of VBA references in the collection. |
Methods
Examples
Shows how to get/remove an element from the VBA reference collection (GetLibIdPath).
@staticmethod
def _get_lib_id_path(reference):
switch_condition = reference.type
if switch_condition == aw.vba.VbaReferenceType.REGISTERED and switch_condition == aw.vba.VbaReferenceType.ORIGINAL and (switch_condition == aw.vba.VbaReferenceType.CONTROL):
return ExVbaProject._get_lib_id_reference_path(reference.lib_id)
elif switch_condition == aw.vba.VbaReferenceType.PROJECT:
return ExVbaProject._get_lib_id_project_path(reference.lib_id)
else:
raise Exception()
@staticmethod
def _get_lib_id_reference_path(lib_id_reference):
if lib_id_reference != None:
ref_parts = lib_id_reference.split('#')
if len(ref_parts) > 3:
return ref_parts[3]
return ''
@staticmethod
def _get_lib_id_project_path(lib_id_project):
return libIdProject[3:] if libIdProject is not None else ''
See Also