Action
    Preparing search index...

    Represents a collection of columns to replace.

    2.0

    Hierarchy (View Summary)

    Implements

    Index

    Methods

    • Casts this object to the specified type. Throws error on failure.

      Type Parameters

      • T1

        The target type of the cast.

      • T2

        The type of the object to cast.

      Parameters

      Returns T1

    • Determines whether the specified object is equal to the current object.

      Parameters

      • obj: any

        The object to compare with the current object.

      Returns boolean

      true if the specified object is equal to the current object; otherwise, false.

    • Serves as the default hash function.

      Returns number

      A hash code for the current object.

    • Returns a string that represents the current object.

      Returns string

      A string that represents the current object.

    • Casts this object to the specified type. Returns null on failure.

      Type Parameters

      • T1

        The target type of the cast.

      • T2

        The type of the object to cast.

      Parameters

      Returns null | T1

    • Determines whether the specified object instances are considered equal.

      Parameters

      • objA: any

        The first object to compare.

      • objB: any

        The second object to compare.

      Returns boolean

      true if the objects are considered equal; otherwise, false. If both objA and objB are null, the method returns true.

    Default capability

    Item: PropertyGet<number | Int32, ColumnReplacement> & PropertySet<
        number
        | Int32,
        ColumnReplacement,
    >

    Gets or sets the element at the specified index.

    The zero-based index of the element to get or set.

    The element at the specified index.

    2.0

    • get Count(): number

      The number of items in the collection.

      Returns number

      2.0

    • get IsReadOnly(): boolean

      Gets a value indicating whether the collection is read-only.

      Returns boolean

      2.0

    • Clears the collection.

      Returns void

      2.0

    • Determines whether the collection contains a specific value.

      Parameters

      Returns boolean

      True if item was found, false otherwise.

      2.0

    • Copies the elements of the collection to an Array, starting at a particular Array index.

      Parameters

      • array: TypedArray<ColumnReplacement>

        The one-dimensional Array that is the destination of the elements copied from this collection. The Array must have zero-based indexing.

      • arrayIndex: number | Int32

        The zero-based index in array at which copying begins.

      Returns void

      2.0

    • Returns the index of the item.

      Parameters

      Returns number

      The index of the item, if it was found. Otherwise -1.

      2.0

    • Inserts an item at the specified index.

      Parameters

      • index: number | Int32

        The zero-based index at which item should be inserted.

      • item: ColumnReplacement

        The object to insert.

      Returns void

      2.0

    • Removes the first occurrence of a specific object from the collection.

      Parameters

      Returns boolean

      True if item was successfully removed from the collection; otherwise, false. This method also returns false if item is not found in the original collection.

      2.0

    • Removes the item at the specified index.

      Parameters

      • index: number | Int32

        The zero-based index of the item to remove.

      Returns void

      2.0