Show / Hide Table of Contents

    Class PolygonList

    Inheritance
    object
    PolygonList
    Implements
    IEnumerable<Polygon>
    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.Primitives
    Assembly: DesignData.SDS2.Primitives.dll
    Syntax
    public class PolygonList : IEnumerable<Polygon>, IEnumerable

    Constructors

    PolygonList()

    Declaration
    public PolygonList()

    PolygonList(PolygonList)

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

    PolygonList(IEnumerable<Polygon>)

    Declaration
    public PolygonList(IEnumerable<Polygon> c)
    Parameters
    Type Name Description
    IEnumerable<Polygon> c

    PolygonList(IEnumerable)

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

    PolygonList(int)

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

    Methods

    Add(Polygon)

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

    AddRange(PolygonList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(Polygon[])

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

    CopyTo(Polygon[], int)

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

    CopyTo(int, Polygon[], int, int)

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

    ~PolygonList()

    Declaration
    protected ~PolygonList()

    GetEnumerator()

    Declaration
    public PolygonList.PolygonListEnumerator GetEnumerator()
    Returns
    Type Description
    PolygonList.PolygonListEnumerator

    GetRange(int, int)

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

    Insert(int, Polygon)

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

    InsertRange(int, PolygonList)

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

    Declaration
    public static PolygonList Repeat(Polygon value, int count)
    Parameters
    Type Name Description
    Polygon value
    int count
    Returns
    Type Description
    PolygonList

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

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

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top