Interface FastLookupNode

The element to lookup records via object variable.

interface FastLookupNode {
    actionConditions?: ActionCondition[];
    connector?: string;
    connectorPoint?: string;
    description?: string;
    faultConnector?: string;
    faultConnectorPoint?: string;
    label: string;
    locationX?: number;
    locationY?: number;
    name: string;
    nullIfNoRecords?: boolean;
    sortField?: string;
    sortOrder?: "ASC" | "DESC";
    variable: string;
}

Hierarchy

  • LookupBaseElement
    • FastLookupNode

Properties

actionConditions?: ActionCondition[]
connector?: string

The normal connector.

connectorPoint?: string
description?: string

The description of the element.

faultConnector?: string

The fault connector.

faultConnectorPoint?: string
label: string

The display name.

locationX?: number

The location.

locationY?: number

The location.

name: string

The unique name.

nullIfNoRecords?: boolean
sortField?: string
sortOrder?: "ASC" | "DESC"
variable: string

The variable to hold the result of the lookup.