ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats Namespace / ImGearFileFilters Class / GetEnumerator Method




In This Topic
    GetEnumerator Method (ImGearFileFilters)
    In This Topic
    Returns an enumerator that can iterate through a collection.
    Syntax
    'Declaration
     
    Public Function GetEnumerator() As IEnumerator
    'Usage
     
    Dim instance As ImGearFileFilters
    Dim value As IEnumerator
     
    value = instance.GetEnumerator()
    public IEnumerator GetEnumerator()
    public: IEnumerator* GetEnumerator(); 
    public:
    IEnumerator^ GetEnumerator(); 

    Return Value

    An IEnumerator that can be used to iterate through the collection.
    Remarks
    Enumerators only allow reading the data in the collection. Enumerators cannot be used to modify the underlying collection. Initially, the enumerator is positioned before the first element in the collection.
    See Also