Class RectangularPlateEndList
Inheritance
RectangularPlateEndList
Assembly: DesignData.SDS2.Model.dll
Syntax
public class RectangularPlateEndList : IEnumerable<RectangularPlateEnd>, IEnumerable
Constructors
RectangularPlateEndList()
Declaration
public RectangularPlateEndList()
RectangularPlateEndList(RectangularPlateEndList)
Declaration
public RectangularPlateEndList(RectangularPlateEndList other)
Parameters
RectangularPlateEndList(IEnumerable<RectangularPlateEnd>)
Declaration
public RectangularPlateEndList(IEnumerable<RectangularPlateEnd> c)
Parameters
RectangularPlateEndList(IEnumerable)
Declaration
public RectangularPlateEndList(IEnumerable c)
Parameters
RectangularPlateEndList(int)
Declaration
public RectangularPlateEndList(int capacity)
Parameters
Type |
Name |
Description |
int |
capacity |
|
Properties
Capacity
Declaration
public int Capacity { get; set; }
Property Value
Count
Declaration
public int Count { get; }
Property Value
IsFixedSize
Declaration
public bool IsFixedSize { get; }
Property Value
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
IsSynchronized
Declaration
public bool IsSynchronized { get; }
Property Value
this[int]
Declaration
public RectangularPlateEnd this[int index] { get; set; }
Parameters
Type |
Name |
Description |
int |
index |
|
Property Value
Methods
Add(RectangularPlateEnd)
Declaration
public void Add(RectangularPlateEnd x)
Parameters
AddRange(RectangularPlateEndList)
Declaration
public void AddRange(RectangularPlateEndList values)
Parameters
Clear()
Declaration
CopyTo(RectangularPlateEnd[])
Declaration
public void CopyTo(RectangularPlateEnd[] array)
Parameters
CopyTo(RectangularPlateEnd[], int)
Declaration
public void CopyTo(RectangularPlateEnd[] array, int arrayIndex)
Parameters
CopyTo(int, RectangularPlateEnd[], int, int)
Declaration
public void CopyTo(int index, RectangularPlateEnd[] array, int arrayIndex, int count)
Parameters
~RectangularPlateEndList()
Declaration
protected ~RectangularPlateEndList()
GetEnumerator()
Declaration
public RectangularPlateEndList.RectangularPlateEndListEnumerator GetEnumerator()
Returns
GetRange(int, int)
Declaration
public RectangularPlateEndList GetRange(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
Returns
Insert(int, RectangularPlateEnd)
Declaration
public void Insert(int index, RectangularPlateEnd x)
Parameters
InsertRange(int, RectangularPlateEndList)
Declaration
public void InsertRange(int index, RectangularPlateEndList values)
Parameters
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(RectangularPlateEnd, int)
Declaration
public static RectangularPlateEndList Repeat(RectangularPlateEnd value, int count)
Parameters
Returns
Reverse()
Declaration
Reverse(int, int)
Declaration
public void Reverse(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
SetRange(int, RectangularPlateEndList)
Declaration
public void SetRange(int index, RectangularPlateEndList values)
Parameters
ToArray()
Declaration
public RectangularPlateEnd[] ToArray()
Returns
Implements