Show / Hide Table of Contents

    Class NamedColorList

    Inheritance
    object
    NamedColorList
    Implements
    IEnumerable<NamedColor>
    IEnumerable
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public class NamedColorList : IEnumerable<NamedColor>, IEnumerable

    Constructors

    NamedColorList()

    Declaration
    public NamedColorList()

    NamedColorList(NamedColorList)

    Declaration
    public NamedColorList(NamedColorList other)
    Parameters
    Type Name Description
    NamedColorList other

    NamedColorList(IEnumerable<NamedColor>)

    Declaration
    public NamedColorList(IEnumerable<NamedColor> c)
    Parameters
    Type Name Description
    IEnumerable<NamedColor> c

    NamedColorList(IEnumerable)

    Declaration
    public NamedColorList(IEnumerable c)
    Parameters
    Type Name Description
    IEnumerable c

    NamedColorList(int)

    Declaration
    public NamedColorList(int capacity)
    Parameters
    Type Name Description
    int capacity

    Properties

    Capacity

    Declaration
    public int Capacity { get; set; }
    Property Value
    Type Description
    int

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    int

    IsFixedSize

    Declaration
    public bool IsFixedSize { get; }
    Property Value
    Type Description
    bool

    IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type Description
    bool

    IsSynchronized

    Declaration
    public bool IsSynchronized { get; }
    Property Value
    Type Description
    bool

    this[int]

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

    Methods

    Add(NamedColor)

    Declaration
    public void Add(NamedColor x)
    Parameters
    Type Name Description
    NamedColor x

    AddRange(NamedColorList)

    Declaration
    public void AddRange(NamedColorList values)
    Parameters
    Type Name Description
    NamedColorList values

    Clear()

    Declaration
    public void Clear()

    CopyTo(NamedColor[])

    Declaration
    public void CopyTo(NamedColor[] array)
    Parameters
    Type Name Description
    NamedColor[] array

    CopyTo(NamedColor[], int)

    Declaration
    public void CopyTo(NamedColor[] array, int arrayIndex)
    Parameters
    Type Name Description
    NamedColor[] array
    int arrayIndex

    CopyTo(int, NamedColor[], int, int)

    Declaration
    public void CopyTo(int index, NamedColor[] array, int arrayIndex, int count)
    Parameters
    Type Name Description
    int index
    NamedColor[] array
    int arrayIndex
    int count

    ~NamedColorList()

    Declaration
    protected ~NamedColorList()

    GetEnumerator()

    Declaration
    public NamedColorList.NamedColorListEnumerator GetEnumerator()
    Returns
    Type Description
    NamedColorList.NamedColorListEnumerator

    GetRange(int, int)

    Declaration
    public NamedColorList GetRange(int index, int count)
    Parameters
    Type Name Description
    int index
    int count
    Returns
    Type Description
    NamedColorList

    Insert(int, NamedColor)

    Declaration
    public void Insert(int index, NamedColor x)
    Parameters
    Type Name Description
    int index
    NamedColor x

    InsertRange(int, NamedColorList)

    Declaration
    public void InsertRange(int index, NamedColorList values)
    Parameters
    Type Name Description
    int index
    NamedColorList values

    RemoveAt(int)

    Declaration
    public void RemoveAt(int index)
    Parameters
    Type Name Description
    int index

    RemoveRange(int, int)

    Declaration
    public void RemoveRange(int index, int count)
    Parameters
    Type Name Description
    int index
    int count

    Repeat(NamedColor, int)

    Declaration
    public static NamedColorList Repeat(NamedColor value, int count)
    Parameters
    Type Name Description
    NamedColor value
    int count
    Returns
    Type Description
    NamedColorList

    Reverse()

    Declaration
    public void Reverse()

    Reverse(int, int)

    Declaration
    public void Reverse(int index, int count)
    Parameters
    Type Name Description
    int index
    int count

    SetRange(int, NamedColorList)

    Declaration
    public void SetRange(int index, NamedColorList values)
    Parameters
    Type Name Description
    int index
    NamedColorList values

    ToArray()

    Declaration
    public NamedColor[] ToArray()
    Returns
    Type Description
    NamedColor[]

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top