ImageGear .NET v25.2 - Updated
ImageGear.Web.Isis Library / ImageGear.Web.Isis Namespace / ImGearIsisTagIntegerCollection class / forEach Method

In This Topic
    forEach Method
    In This Topic
    Calls the specified function once for each item in the collection.
    Syntax
    ASP.NET Ajax JavaScript (Specification) 
    function forEach( 
       method : function,
       context : object
    ) : (Any);
    ASP.NET Ajax JavaScript (Usage) 
    var resultVar = instanceOfImGearIsisTagIntegerCollection.forEach(function,object);

    Parameters

    method
    The function to call.
    context
    An object that holds the context of the call.
    Remarks

    This function calls the specified function once for each item in the collection.

    When forEach calls the function, it will set this to context, the first function parameter is the item being enumerated, the second function parameter is the zero-based index of the iteration, and the third function parameter to the collection.

    See Also