Click or drag to resize

ForEach Class

This commands implements a loop on the elements of an IList object.
Inheritance Hierarchy
SystemObject
  MediaCy.IQL.ApplicationMcCommand
    MediaCy.IQL.ApplicationMcCommandExtended
      MediaCy.IQL.ApplicationMcScript
        MediaCy.Commands.WorkflowForEach

Namespace:  MediaCy.Commands.Workflow
Assembly:  MediaCy.Commands (in MediaCy.Commands.dll) Version: 3.1.0.0
Syntax
VB
Public Class ForEach
	Inherits McScript

The ForEach type exposes the following members.

Constructors
  NameDescription
Public methodForEach
Initializes a new instance of the ForEach class
Public methodForEach(McCommand)
Initializes a new instance of the ForEach class
Top
Properties
  NameDescription
Public propertyInput
Input.Value object implementing the IList interface, whose elements will be processed by the loop body.
Public propertyOutput
Represents a single element of the Input list.
Top
Methods
  NameDescription
Public methodExecute (Overrides McCommandExecute(ICommandSource).)
Public methodRecord
Implement recording.
(Overrides McScript.Record(McCommand, RecordOptions).)
Public methodRun
Public methodSaveRunAsCode (Overrides McCommandExtended.SaveRunAsCode(TextWriter, String, RecordingFlags).)
Public methodSchedule (Overrides McCommandSchedule(ThreadAffinity, TaskPriority).)
Top
Remarks
The Input list is divided into its elements which are assigned one after the other to the Output.
See Also