hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface representing associative array operations.

    interface ISGIAssociativeArray {
        AddReplace(key: string, value: any): any;
        Append(aa: any): any;
        Clear(): any;
        Count(): number;
        Delete(key: string): boolean;
        DoesExist(key: string): boolean;
        Items(): any;
        Keys(): any;
        Lookup(key: string): any;
        LookupCI(key: string): any;
        SetModeCaseSensitive(): any;
    }

    Hierarchy (View Summary)

    Index

    Methods