Search Results for

    Show / Hide Table of Contents

    Class InstanceCollection

    A collection of configuration Instance objects.

    Inheritance
    object
    CollectionBase
    EnumerableTCollectionBase<Instance>
    InstanceCollection
    Implements
    IList
    ICollection
    IEnumerable<Instance>
    IEnumerable
    Inherited Members
    CollectionBase.Clear()
    CollectionBase.RemoveAt(int)
    CollectionBase.GetEnumerator()
    CollectionBase.OnSet(int, object, object)
    CollectionBase.OnInsert(int, object)
    CollectionBase.OnClear()
    CollectionBase.OnRemove(int, object)
    CollectionBase.OnValidate(object)
    CollectionBase.OnSetComplete(int, object, object)
    CollectionBase.OnInsertComplete(int, object)
    CollectionBase.OnClearComplete()
    CollectionBase.OnRemoveComplete(int, object)
    CollectionBase.InnerList
    CollectionBase.List
    CollectionBase.Capacity
    CollectionBase.Count
    Namespace: ABB.Robotics.Controllers.ConfigurationDomain
    Assembly: ABB.Robotics.Controllers.PC.dll
    Syntax
    public class InstanceCollection : EnumerableTCollectionBase<Instance>, IList, ICollection, IEnumerable<Instance>, IEnumerable

    Constructors

    View Source

    InstanceCollection()

    Initiates a new collection of instances.

    Declaration
    public InstanceCollection()

    Properties

    View Source

    this[int]

    Gets or sets the Instance at the specified index.

    Declaration
    public Instance this[int index] { get; set; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    Instance

    The object at the specfied index.

    Methods

    View Source

    Add(Instance)

    Adds the specified value.

    Declaration
    public int Add(Instance value)
    Parameters
    Type Name Description
    Instance value

    The value.

    Returns
    Type Description
    int

    The index of the Value.

    View Source

    Contains(Instance)

    Determines whether the collection contains the specified value.

    Declaration
    public bool Contains(Instance value)
    Parameters
    Type Name Description
    Instance value

    The value.

    Returns
    Type Description
    bool

    true if collection contains the specified value; otherwise, false.

    View Source

    IndexOf(Instance)

    Gets the index of the value.

    Declaration
    public int IndexOf(Instance value)
    Parameters
    Type Name Description
    Instance value

    The value.

    Returns
    Type Description
    int

    The index, otherwise -1;

    View Source

    Insert(int, Instance)

    Inserts the specified index.

    Declaration
    public void Insert(int index, Instance value)
    Parameters
    Type Name Description
    int index

    The index.

    Instance value

    The value.

    View Source

    Remove(Instance)

    Removes the specified value.

    Declaration
    public void Remove(Instance value)
    Parameters
    Type Name Description
    Instance value

    The value.

    Implements

    IList
    ICollection
    IEnumerable<T>
    IEnumerable
    • View Source
    In this article
    Back to top Copyright © 2026 ABB Robotics