The loop element.

interface LoopNode {
    assignNextValueTo: string;
    collection: string;
    description?: string;
    iterationOrder: "asc" | "desc";
    label: string;
    locationX?: number;
    locationY?: number;
    name: string;
    nextValueConnector?: string;
    nextValueConnectorPoint?: string;
    noMoreValuesConnector?: string;
    noMoreValuesConnectorPoint?: string;
}

Hierarchy (view full)

Properties

assignNextValueTo: string

The next pointer.

collection: string

The collection to loop.

description?: string

The description of the element.

iterationOrder: "asc" | "desc"

The iteration order.

label: string

The display name.

locationX?: number

The location.

locationY?: number

The location.

name: string

The unique name.

nextValueConnector?: string

The connector to iterate the next value.

nextValueConnectorPoint?: string
noMoreValuesConnector?: string

The connector to the end of the loop.

noMoreValuesConnectorPoint?: string