ImageGear.Web.UI Library > ImageGear.Web.UI Namespace > ImGearPageCollection class : forEach Method |
ASP.NET Ajax Javascript (Specification) | |
---|---|
function forEach( method : function, context : object ) : (Any); |
ASP.NET Ajax Javascript (Usage) | |
---|---|
var resultVar = instanceOfImGearPageCollection.forEach(function,object); |
This function calls the specified function once for each Page in the collection.
When forEach calls the function, it will set this
to context, the first function parameter is the Page being enumerated, the second function parameter is the zero-based index of the iteration, and the third function parameter to the collection.
This function copies the list of pages before starting the enumeration, so you can safely make changes to the collection during the enumeration process. Any page that you delete during the enumeration will be enumerated; any pages that you add during the enumeration will not be enumerated, and any pages that you change during the enumeration will be enumerated with their new value.