Show / Hide Table of Contents

    Class ChamferList

    Inheritance
    object
    ChamferList
    Implements
    IEnumerable<Chamfer>
    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.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public class ChamferList : IEnumerable<Chamfer>, IEnumerable

    Constructors

    ChamferList()

    Declaration
    public ChamferList()

    ChamferList(ChamferList)

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

    ChamferList(IEnumerable<Chamfer>)

    Declaration
    public ChamferList(IEnumerable<Chamfer> c)
    Parameters
    Type Name Description
    IEnumerable<Chamfer> c

    ChamferList(IEnumerable)

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

    ChamferList(int)

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

    Methods

    Add(Chamfer)

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

    AddRange(ChamferList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(Chamfer[])

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

    CopyTo(Chamfer[], int)

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

    CopyTo(int, Chamfer[], int, int)

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

    ~ChamferList()

    Declaration
    protected ~ChamferList()

    GetEnumerator()

    Declaration
    public ChamferList.ChamferListEnumerator GetEnumerator()
    Returns
    Type Description
    ChamferList.ChamferListEnumerator

    GetRange(int, int)

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

    Insert(int, Chamfer)

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

    InsertRange(int, ChamferList)

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

    Declaration
    public static ChamferList Repeat(Chamfer value, int count)
    Parameters
    Type Name Description
    Chamfer value
    int count
    Returns
    Type Description
    ChamferList

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

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

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top