Show / Hide Table of Contents

    Class DeformedBarAttachmentList

    Inheritance
    object
    DeformedBarAttachmentList
    Implements
    IEnumerable<DeformedBarAttachment>
    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 DeformedBarAttachmentList : IEnumerable<DeformedBarAttachment>, IEnumerable

    Constructors

    DeformedBarAttachmentList()

    Declaration
    public DeformedBarAttachmentList()

    DeformedBarAttachmentList(DeformedBarAttachmentList)

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

    DeformedBarAttachmentList(IEnumerable<DeformedBarAttachment>)

    Declaration
    public DeformedBarAttachmentList(IEnumerable<DeformedBarAttachment> c)
    Parameters
    Type Name Description
    IEnumerable<DeformedBarAttachment> c

    DeformedBarAttachmentList(IEnumerable)

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

    DeformedBarAttachmentList(int)

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

    Methods

    Add(DeformedBarAttachment)

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

    AddRange(DeformedBarAttachmentList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(DeformedBarAttachment[])

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

    CopyTo(DeformedBarAttachment[], int)

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

    CopyTo(int, DeformedBarAttachment[], int, int)

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

    ~DeformedBarAttachmentList()

    Declaration
    protected ~DeformedBarAttachmentList()

    GetEnumerator()

    Declaration
    public DeformedBarAttachmentList.DeformedBarAttachmentListEnumerator GetEnumerator()
    Returns
    Type Description
    DeformedBarAttachmentList.DeformedBarAttachmentListEnumerator

    GetRange(int, int)

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

    Insert(int, DeformedBarAttachment)

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

    InsertRange(int, DeformedBarAttachmentList)

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

    Declaration
    public static DeformedBarAttachmentList Repeat(DeformedBarAttachment value, int count)
    Parameters
    Type Name Description
    DeformedBarAttachment value
    int count
    Returns
    Type Description
    DeformedBarAttachmentList

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

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

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top