Aspose.Tasks for C++
Aspose::Tasks::TableFieldCollection Class Reference

Contains a list of TableField objects. Implements IList<TableField> interface. More...

#include <TableFieldCollection.h>

Inherits System::Collections::Generic::IList< typename >.

Public Types

using iterator_holder_type = System::Collections::Generic::List< System::SharedPtr< TableField > >
 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.
 

Public Member Functions

int32_t get_Count () const override
 Gets the number of elements contained in this collection. More...
 
bool get_IsReadOnly () const override
 Gets a value indicating whether this collection is read-only; otherwise, false. More...
 
System::SharedPtr< TableFieldidx_get (int32_t index) const override
 Returns the element at the specified index. More...
 
void idx_set (int32_t index, System::SharedPtr< TableField > value) override
 Sets the element at the specified index. More...
 
System::SharedPtr< System::Collections::Generic::IEnumerator< System::SharedPtr< TableField > > > GetEnumerator () override
 Returns an enumerator for this collection. More...
 
void Add (const System::SharedPtr< TableField > &item) override
 Adds the specified item to this collection. More...
 
void Clear () override
 Removes all items from this collection. More...
 
bool Contains (const System::SharedPtr< TableField > &item) const override
 Returns true if the specified item is found in this collection; otherwise, false. More...
 
void CopyTo (System::ArrayPtr< System::SharedPtr< TableField >> array, int32_t arrayIndex) override
 Copies the elements of this collection to the specified array, starting at the specified array index. More...
 
bool Remove (const System::SharedPtr< TableField > &item) override
 Removes the first occurrence of a specific object from this collection. More...
 
int32_t IndexOf (const System::SharedPtr< TableField > &item) const override
 Determines the index of the specified item in this collection. More...
 
void Insert (int32_t index, const System::SharedPtr< TableField > &item) override
 Inserts the specified item at the specified index. More...
 
void RemoveAt (int32_t index) override
 Removes an item at the specified index. More...
 
iterator begin () noexcept
 
iterator end () noexcept
 
const_iterator begin () const noexcept
 
const_iterator end () const noexcept
 
const_iterator cbegin () const noexcept
 
const_iterator cend () const noexcept
 
virtualized_iteratorvirtualizeBeginIterator () override
 
virtualized_iteratorvirtualizeEndIterator () override
 
virtualized_iteratorvirtualizeBeginConstIterator () const override
 
virtualized_iteratorvirtualizeEndConstIterator () const override
 

Detailed Description

Contains a list of TableField objects. Implements IList<TableField> interface.

Member Function Documentation

◆ Add()

void Aspose::Tasks::TableFieldCollection::Add ( const System::SharedPtr< TableField > &  item)
override

Adds the specified item to this collection.

Parameters
itemthe specified item to add to this collection.

◆ begin() [1/2]

const_iterator Aspose::Tasks::TableFieldCollection::begin ( ) const
noexcept

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::TableFieldCollection::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()

const_iterator Aspose::Tasks::TableFieldCollection::cbegin ( ) const
noexcept

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()

const_iterator Aspose::Tasks::TableFieldCollection::cend ( ) const
noexcept

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

◆ Clear()

void Aspose::Tasks::TableFieldCollection::Clear ( )
override

Removes all items from this collection.

◆ Contains()

bool Aspose::Tasks::TableFieldCollection::Contains ( const System::SharedPtr< TableField > &  item) const
override

Returns true if the specified item is found in this collection; otherwise, false.

Parameters
itemthe specified item to find.
Returns
true if the specified item is found in this collection; otherwise, false.

◆ CopyTo()

void Aspose::Tasks::TableFieldCollection::CopyTo ( System::ArrayPtr< System::SharedPtr< TableField >>  array,
int32_t  arrayIndex 
)
override

Copies the elements of this collection to the specified array, starting at the specified array index.

Parameters
arraythe specified one-dimensional array to copy elements to
arrayIndexthe zero-based index of the specified array at which copying begins.

◆ end() [1/2]

const_iterator Aspose::Tasks::TableFieldCollection::end ( ) const
noexcept

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::TableFieldCollection::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

◆ get_Count()

int32_t Aspose::Tasks::TableFieldCollection::get_Count ( ) const
override

Gets the number of elements contained in this collection.

◆ get_IsReadOnly()

bool Aspose::Tasks::TableFieldCollection::get_IsReadOnly ( ) const
override

Gets a value indicating whether this collection is read-only; otherwise, false.

◆ GetEnumerator()

System::SharedPtr<System::Collections::Generic::IEnumerator<System::SharedPtr<TableField> > > Aspose::Tasks::TableFieldCollection::GetEnumerator ( )
override

Returns an enumerator for this collection.

Returns
an enumerator for this collection.

◆ idx_get()

System::SharedPtr<TableField> Aspose::Tasks::TableFieldCollection::idx_get ( int32_t  index) const
override

Returns the element at the specified index.

Parameters
indexThe zero-based index of the element to get or set.
Returns
the element at the specified index.

◆ idx_set()

void Aspose::Tasks::TableFieldCollection::idx_set ( int32_t  index,
System::SharedPtr< TableField value 
)
override

Sets the element at the specified index.

Parameters
indexThe zero-based index of the element to get or set.
valuethe element at the specified index.

◆ IndexOf()

int32_t Aspose::Tasks::TableFieldCollection::IndexOf ( const System::SharedPtr< TableField > &  item) const
override

Determines the index of the specified item in this collection.

Parameters
itemthe specified item to locate in this collection.
Returns
the index of the specified item if found; otherwise, -1.

◆ Insert()

void Aspose::Tasks::TableFieldCollection::Insert ( int32_t  index,
const System::SharedPtr< TableField > &  item 
)
override

Inserts the specified item at the specified index.

Parameters
indexthe specified zero-based index at which the item should be inserted.
itemthe specified item to insert to this collection.

◆ Remove()

bool Aspose::Tasks::TableFieldCollection::Remove ( const System::SharedPtr< TableField > &  item)
override

Removes the first occurrence of a specific object from this collection.

Parameters
itemthe specified object to remove.
Returns
true if the specified object was successfully removed from this collection; otherwise, false.

◆ RemoveAt()

void Aspose::Tasks::TableFieldCollection::RemoveAt ( int32_t  index)
override

Removes an item at the specified index.

Parameters
indexthe specified zero-based index to remove an item at.

◆ virtualizeBeginConstIterator()

virtualized_iterator* Aspose::Tasks::TableFieldCollection::virtualizeBeginConstIterator ( ) const
override

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()

virtualized_iterator* Aspose::Tasks::TableFieldCollection::virtualizeBeginIterator ( )
override

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()

virtualized_iterator* Aspose::Tasks::TableFieldCollection::virtualizeEndConstIterator ( ) const
override

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()

virtualized_iterator* Aspose::Tasks::TableFieldCollection::virtualizeEndIterator ( )
override

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.