Show / Hide Table of Contents

    Class EmbedStudAttachmentList

    Inheritance
    object
    EmbedStudAttachmentList
    Implements
    IEnumerable<EmbedStudAttachment>
    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 EmbedStudAttachmentList : IEnumerable<EmbedStudAttachment>, IEnumerable

    Constructors

    EmbedStudAttachmentList()

    Declaration
    public EmbedStudAttachmentList()

    EmbedStudAttachmentList(EmbedStudAttachmentList)

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

    EmbedStudAttachmentList(IEnumerable<EmbedStudAttachment>)

    Declaration
    public EmbedStudAttachmentList(IEnumerable<EmbedStudAttachment> c)
    Parameters
    Type Name Description
    IEnumerable<EmbedStudAttachment> c

    EmbedStudAttachmentList(IEnumerable)

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

    EmbedStudAttachmentList(int)

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

    Methods

    Add(EmbedStudAttachment)

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

    AddRange(EmbedStudAttachmentList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(EmbedStudAttachment[])

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

    CopyTo(EmbedStudAttachment[], int)

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

    CopyTo(int, EmbedStudAttachment[], int, int)

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

    ~EmbedStudAttachmentList()

    Declaration
    protected ~EmbedStudAttachmentList()

    GetEnumerator()

    Declaration
    public EmbedStudAttachmentList.EmbedStudAttachmentListEnumerator GetEnumerator()
    Returns
    Type Description
    EmbedStudAttachmentList.EmbedStudAttachmentListEnumerator

    GetRange(int, int)

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

    Insert(int, EmbedStudAttachment)

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

    InsertRange(int, EmbedStudAttachmentList)

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

    Declaration
    public static EmbedStudAttachmentList Repeat(EmbedStudAttachment value, int count)
    Parameters
    Type Name Description
    EmbedStudAttachment value
    int count
    Returns
    Type Description
    EmbedStudAttachmentList

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

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

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top