Search Results for

    Show / Hide Table of Contents

    Class AttributeCollection

    Summary description for AttributeCollection.

    Inheritance
    object
    CollectionBase
    EnumerableTCollectionBase<Attribute>
    AttributeCollection
    Implements
    IList
    ICollection
    IEnumerable<Attribute>
    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 AttributeCollection : EnumerableTCollectionBase<Attribute>, IList, ICollection, IEnumerable<Attribute>, IEnumerable

    Constructors

    View Source

    AttributeCollection()

    Declaration
    public AttributeCollection()

    Properties

    View Source

    this[int]

    Gets or sets the Attribute at the specified index.

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

    Value to set.

    View Source

    this[string]

    Gets the Attribute with the specified name.

    Declaration
    public Attribute this[string name] { get; }
    Parameters
    Type Name Description
    string name
    Property Value
    Type Description
    Attribute

    The Value.

    Methods

    View Source

    Add(Attribute)

    Adds the specified value.

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

    The value.

    Returns
    Type Description
    int

    The inserted index.

    View Source

    Contains(Attribute)

    Determines if the collection contains the specified value.

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

    The value.

    Returns
    Type Description
    bool

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

    View Source

    IndexOf(Attribute)

    Gets the index of the value.

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

    The value.

    Returns
    Type Description
    int

    The index, otherwise -1.

    View Source

    IndexOf(string)

    Returns the index of the name.

    Declaration
    public int IndexOf(string name)
    Parameters
    Type Name Description
    string name

    The name.

    Returns
    Type Description
    int

    Index of the name, otherwise -1.

    View Source

    Insert(int, Attribute)

    Inserts a value at the specified index.

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

    The index.

    Attribute value

    The value.

    View Source

    Remove(Attribute)

    Removes the specified value.

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

    The value.

    Implements

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