public interface IVbaModuleCollection extends IGenericCollection<IVbaModule>
Modifier and Type | Method and Description |
---|---|
IVbaModule |
addEmptyModule(java.lang.String name)
Adds a new empty module to the VBA Project.
|
IVbaModule |
get_Item(int index)
Gets the element at the specified index.
|
void |
remove(IVbaModule value)
Removes the first occurrence of a specific object from the collection.
|
iterator
IVbaModule get_Item(int index)
Gets the element at the specified index.
IVbaModule addEmptyModule(java.lang.String name)
Adds a new empty module to the VBA Project.
name
- Name of the modulevoid remove(IVbaModule value)
Removes the first occurrence of a specific object from the collection.
value
- The module to remove from the collection.