Show / Hide Table of Contents

    Class EmbedHoleAttachmentList

    Inheritance
    object
    EmbedHoleAttachmentList
    Implements
    IEnumerable<EmbedHoleAttachment>
    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 EmbedHoleAttachmentList : IEnumerable<EmbedHoleAttachment>, IEnumerable

    Constructors

    EmbedHoleAttachmentList()

    Declaration
    public EmbedHoleAttachmentList()

    EmbedHoleAttachmentList(EmbedHoleAttachmentList)

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

    EmbedHoleAttachmentList(IEnumerable<EmbedHoleAttachment>)

    Declaration
    public EmbedHoleAttachmentList(IEnumerable<EmbedHoleAttachment> c)
    Parameters
    Type Name Description
    IEnumerable<EmbedHoleAttachment> c

    EmbedHoleAttachmentList(IEnumerable)

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

    EmbedHoleAttachmentList(int)

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

    Methods

    Add(EmbedHoleAttachment)

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

    AddRange(EmbedHoleAttachmentList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(EmbedHoleAttachment[])

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

    CopyTo(EmbedHoleAttachment[], int)

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

    CopyTo(int, EmbedHoleAttachment[], int, int)

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

    ~EmbedHoleAttachmentList()

    Declaration
    protected ~EmbedHoleAttachmentList()

    GetEnumerator()

    Declaration
    public EmbedHoleAttachmentList.EmbedHoleAttachmentListEnumerator GetEnumerator()
    Returns
    Type Description
    EmbedHoleAttachmentList.EmbedHoleAttachmentListEnumerator

    GetRange(int, int)

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

    Insert(int, EmbedHoleAttachment)

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

    InsertRange(int, EmbedHoleAttachmentList)

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

    Declaration
    public static EmbedHoleAttachmentList Repeat(EmbedHoleAttachment value, int count)
    Parameters
    Type Name Description
    EmbedHoleAttachment value
    int count
    Returns
    Type Description
    EmbedHoleAttachmentList

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

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

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top