Show / Hide Table of Contents

    Class ColdFormedBendList

    Inheritance
    object
    ColdFormedBendList
    Implements
    IEnumerable<ColdFormedBend>
    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 ColdFormedBendList : IEnumerable<ColdFormedBend>, IEnumerable

    Constructors

    ColdFormedBendList()

    Declaration
    public ColdFormedBendList()

    ColdFormedBendList(ColdFormedBendList)

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

    ColdFormedBendList(IEnumerable<ColdFormedBend>)

    Declaration
    public ColdFormedBendList(IEnumerable<ColdFormedBend> c)
    Parameters
    Type Name Description
    IEnumerable<ColdFormedBend> c

    ColdFormedBendList(IEnumerable)

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

    ColdFormedBendList(int)

    Declaration
    public ColdFormedBendList(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 ColdFormedBend this[int index] { get; set; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    ColdFormedBend

    Methods

    Add(ColdFormedBend)

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

    AddRange(ColdFormedBendList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(ColdFormedBend[])

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

    CopyTo(ColdFormedBend[], int)

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

    CopyTo(int, ColdFormedBend[], int, int)

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

    ~ColdFormedBendList()

    Declaration
    protected ~ColdFormedBendList()

    GetEnumerator()

    Declaration
    public ColdFormedBendList.ColdFormedBendListEnumerator GetEnumerator()
    Returns
    Type Description
    ColdFormedBendList.ColdFormedBendListEnumerator

    GetRange(int, int)

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

    Insert(int, ColdFormedBend)

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

    InsertRange(int, ColdFormedBendList)

    Declaration
    public void InsertRange(int index, ColdFormedBendList values)
    Parameters
    Type Name Description
    int index
    ColdFormedBendList 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(ColdFormedBend, int)

    Declaration
    public static ColdFormedBendList Repeat(ColdFormedBend value, int count)
    Parameters
    Type Name Description
    ColdFormedBend value
    int count
    Returns
    Type Description
    ColdFormedBendList

    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, ColdFormedBendList)

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

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top