Show / Hide Table of Contents

    Class ShapeList

    Inheritance
    System.Object
    ShapeList
    Implements
    System.Collections.Generic.IEnumerable<Shape>
    System.Collections.IEnumerable
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public class ShapeList : IEnumerable<Shape>, IEnumerable

    Constructors

    ShapeList()

    Declaration
    public ShapeList()

    ShapeList(ShapeList)

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

    ShapeList(IEnumerable<Shape>)

    Declaration
    public ShapeList(IEnumerable<Shape> c)
    Parameters
    Type Name Description
    System.Collections.Generic.IEnumerable<Shape> c

    ShapeList(IEnumerable)

    Declaration
    public ShapeList(IEnumerable c)
    Parameters
    Type Name Description
    System.Collections.IEnumerable c

    ShapeList(Int32)

    Declaration
    public ShapeList(int capacity)
    Parameters
    Type Name Description
    System.Int32 capacity

    Properties

    Capacity

    Declaration
    public int Capacity { get; set; }
    Property Value
    Type Description
    System.Int32

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    System.Int32

    IsFixedSize

    Declaration
    public bool IsFixedSize { get; }
    Property Value
    Type Description
    System.Boolean

    IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type Description
    System.Boolean

    IsSynchronized

    Declaration
    public bool IsSynchronized { get; }
    Property Value
    Type Description
    System.Boolean

    Item[Int32]

    Declaration
    public Shape this[int index] { get; set; }
    Parameters
    Type Name Description
    System.Int32 index
    Property Value
    Type Description
    Shape

    Methods

    Add(Shape)

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

    AddRange(ShapeList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(Shape[])

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

    CopyTo(Shape[], Int32)

    Declaration
    public void CopyTo(Shape[] array, int arrayIndex)
    Parameters
    Type Name Description
    Shape[] array
    System.Int32 arrayIndex

    CopyTo(Int32, Shape[], Int32, Int32)

    Declaration
    public void CopyTo(int index, Shape[] array, int arrayIndex, int count)
    Parameters
    Type Name Description
    System.Int32 index
    Shape[] array
    System.Int32 arrayIndex
    System.Int32 count

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public ShapeList.ShapeListEnumerator GetEnumerator()
    Returns
    Type Description
    ShapeList.ShapeListEnumerator

    GetRange(Int32, Int32)

    Declaration
    public ShapeList GetRange(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index
    System.Int32 count
    Returns
    Type Description
    ShapeList

    Insert(Int32, Shape)

    Declaration
    public void Insert(int index, Shape x)
    Parameters
    Type Name Description
    System.Int32 index
    Shape x

    InsertRange(Int32, ShapeList)

    Declaration
    public void InsertRange(int index, ShapeList values)
    Parameters
    Type Name Description
    System.Int32 index
    ShapeList values

    RemoveAt(Int32)

    Declaration
    public void RemoveAt(int index)
    Parameters
    Type Name Description
    System.Int32 index

    RemoveRange(Int32, Int32)

    Declaration
    public void RemoveRange(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index
    System.Int32 count

    Repeat(Shape, Int32)

    Declaration
    public static ShapeList Repeat(Shape value, int count)
    Parameters
    Type Name Description
    Shape value
    System.Int32 count
    Returns
    Type Description
    ShapeList

    Reverse()

    Declaration
    public void Reverse()

    Reverse(Int32, Int32)

    Declaration
    public void Reverse(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index
    System.Int32 count

    SetRange(Int32, ShapeList)

    Declaration
    public void SetRange(int index, ShapeList values)
    Parameters
    Type Name Description
    System.Int32 index
    ShapeList values

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<Shape>.GetEnumerator()

    Declaration
    IEnumerator<Shape> IEnumerable<Shape>.GetEnumerator()
    Returns
    Type Description
    System.Collections.Generic.IEnumerator<Shape>

    IEnumerable.GetEnumerator()

    Declaration
    IEnumerator IEnumerable.GetEnumerator()
    Returns
    Type Description
    System.Collections.IEnumerator

    Implements

    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    Back to top