Represents a collection of VbaModule objects.
More...
#include <VbaModuleCollection.h>
Inherits System::Collections::Generic::ICollection< typename >.
|
using | iterator_holder_type = System::Collections::Generic::List< System::SharedPtr< VbaModule > > |
| A collection type whose iterator types is used as iterator types in the current collection.
|
|
using | iterator = typename iterator_holder_type::iterator |
| Iterator type.
|
|
using | const_iterator = typename iterator_holder_type::const_iterator |
| Const iterator type.
|
|
using | virtualized_iterator_element = typename iterator_holder_type::virtualized_iterator_element |
| Virtualized element type.
|
|
using | virtualized_iterator = typename iterator_holder_type::virtualized_iterator |
| Virtualized type.
|
|
Represents a collection of VbaModule objects.
◆ begin() [1/2]
Gets iterator pointing to the first element (if any) of the const-qualified instance of the collection.
- Returns
- An iterator pointing to the first element (if any) of the const-qualified instance of the collection
◆ begin() [2/2]
iterator Aspose::Tasks::VbaModuleCollection::begin |
( |
| ) |
|
|
noexcept |
Gets iterator pointing to the first element (if any) of the collection.
- Returns
- An iterator pointing to the first element (if any) of the collection
◆ cbegin()
Gets iterator pointing to the first const-qualified element (if any) of the collection.
- Returns
- An iterator pointing to the first const-qualified element (if any) of the collection
◆ cend()
Gets iterator pointing right after the last const-qualified element (if any) of the collection.
- Returns
- An iterator pointing right after the last const-qualified element (if any) of the collection
◆ end() [1/2]
Gets iterator pointing right after the last element (if any) of the const-qualified instance of the collection.
- Returns
- An iterator pointing right after the last element (if any) of the const-qualified instance of the collection
◆ end() [2/2]
iterator Aspose::Tasks::VbaModuleCollection::end |
( |
| ) |
|
|
noexcept |
Gets iterator pointing right after the last element (if any) of the collection.
- Returns
- An iterator pointing right after the last element (if any) of the collection
◆ idx_get() [1/2]
System::SharedPtr<VbaModule> Aspose::Tasks::VbaModuleCollection::idx_get |
( |
const System::String & |
moduleName | ) |
|
Gets the module with the specified name.
- Parameters
-
moduleName | The name of the module to get. |
◆ idx_get() [2/2]
System::SharedPtr<VbaModule> Aspose::Tasks::VbaModuleCollection::idx_get |
( |
int32_t |
index | ) |
|
Gets the module at the specified index.
- Parameters
-
index | The zero-based index of the element to get. |
◆ ToList()
System::SharedPtr<System::Collections::Generic::List<System::SharedPtr<VbaModule> > > Aspose::Tasks::VbaModuleCollection::ToList |
( |
| ) |
|
Converts the collection object to a list of VbaModule objects.
- Returns
- List of objects.
◆ virtualizeBeginConstIterator()
Gets iterator pointing to the first element (if any)of the const-qualified instance of the collection.
- Returns
- An iterator pointing to the first element (if any)of the const-qualified instance of the collection Provides const iterator implementation to container's first element.
-
Newly-created iterator object.
◆ virtualizeBeginIterator()
Gets iterator pointing to the first element (if any) of the collection.
- Returns
- An iterator pointing to the first element (if any) of the collection Provides iterator implementation to container's first element.
-
Newly-created iterator object.
◆ virtualizeEndConstIterator()
Gets iterator pointing right after the last element (if any)of the const-qualified instance of the collection.
- Returns
- An iterator pointing right after the last element (if any)of the const-qualified instance of the collection Provides const iterator implementation to container's end.
-
Newly-created iterator object.
◆ virtualizeEndIterator()
Gets iterator pointing right after the last element (if any) of the collection.
- Returns
- An iterator pointing right after the last element (if any) of the collection Provides iterator implementation to container's end.
-
Newly-created iterator object.