Show / Hide Table of Contents

    Class PolygonList

    Inheritance
    System.Object
    PolygonList
    Implements
    System.Collections.Generic.IEnumerable<Polygon>
    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.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
    System.Collections.Generic.IEnumerable<Polygon> c

    PolygonList(IEnumerable)

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

    PolygonList(Int32)

    Declaration
    public PolygonList(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 Polygon this[int index] { get; set; }
    Parameters
    Type Name Description
    System.Int32 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[], Int32)

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

    CopyTo(Int32, Polygon[], Int32, Int32)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

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

    GetRange(Int32, Int32)

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

    Insert(Int32, Polygon)

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

    InsertRange(Int32, PolygonList)

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

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

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

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

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<Polygon>.GetEnumerator()

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

    IEnumerable.GetEnumerator()

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

    Implements

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