Plants vs. Zombies: Replanted - v1.0.3
    Preparing search index...

    Interface ILoadOrderDisplayItem

    describes an item in the load order control. This isn't just used for "display", the id is what gets stored to internally save the load order

    interface ILoadOrderDisplayItem {
        condition?: (
            lhs: ILoadOrderDisplayItem,
            rhs: ILoadOrderDisplayItem,
            predictedResult: ILoadOrderDisplayItem[],
        ) => IDnDConditionResult;
        contextMenuActions?: IActionDefinitionEx[];
        data?: string;
        external?: boolean;
        id: string;
        imgUrl: string;
        locked?: boolean;
        message?: string;
        name: string;
        official?: boolean;
        prefix?: string;
    }
    Index

    Properties

    condition?: (
        lhs: ILoadOrderDisplayItem,
        rhs: ILoadOrderDisplayItem,
        predictedResult: ILoadOrderDisplayItem[],
    ) => IDnDConditionResult
    contextMenuActions?: IActionDefinitionEx[]
    data?: string
    external?: boolean
    id: string
    imgUrl: string
    locked?: boolean
    message?: string
    name: string
    official?: boolean
    prefix?: string