VbaReferenceCollection
Contents
[
Hide
]VbaReferenceCollection class
Represents a collection of VbaReference
objects.
To learn more, visit the Working with VBA Macros documentation article.
public sealed class VbaReferenceCollection : IEnumerable<VbaReference>
Properties
Name | Description |
---|---|
Count { get; } | Returns the number of VBA references in the collection. |
Item { get; } | Gets VbaReference object at the specified index. |
Methods
Name | Description |
---|---|
Remove(VbaReference) | Removes the first occurrence of a specified VbaReference item from the collection. |
RemoveAt(int) | Removes the VbaReference element at the specified index of the collection. |
Examples
Shows how to get/remove an element from the VBA reference collection.
public void RemoveVbaReference()
{
const string brokenPath = @"X:\broken.dll";
Document doc = new Document(MyDir + "VBA project.docm");
VbaReferenceCollection references = doc.VbaProject.References;
Assert.AreEqual(5 ,references.Count);
for (int i = references.Count - 1; i >= 0; i--)
{
VbaReference reference = doc.VbaProject.References[i];
string path = GetLibIdPath(reference);
if (path == brokenPath)
references.RemoveAt(i);
}
Assert.AreEqual(4 ,references.Count);
references.Remove(references[1]);
Assert.AreEqual(3 ,references.Count);
doc.Save(ArtifactsDir + "VbaProject.RemoveVbaReference.docm");
}
/// <summary>
/// Returns string representing LibId path of a specified reference.
/// </summary>
private static string GetLibIdPath(VbaReference reference)
{
switch (reference.Type)
{
case VbaReferenceType.Registered:
case VbaReferenceType.Original:
case VbaReferenceType.Control:
return GetLibIdReferencePath(reference.LibId);
case VbaReferenceType.Project:
return GetLibIdProjectPath(reference.LibId);
default:
throw new ArgumentOutOfRangeException();
}
}
/// <summary>
/// Returns path from a specified identifier of an Automation type library.
/// </summary>
private static string GetLibIdReferencePath(string libIdReference)
{
if (libIdReference != null)
{
string[] refParts = libIdReference.Split('#');
if (refParts.Length > 3)
return refParts[3];
}
return "";
}
/// <summary>
/// Returns path from a specified identifier of an Automation type library.
/// </summary>
private static string GetLibIdProjectPath(string libIdProject)
{
return libIdProject != null ? libIdProject.Substring(3) : "";
}
See Also
- class VbaReference
- namespace Aspose.Words.Vba
- assembly Aspose.Words