Class RoundBarShapeList
Inheritance
RoundBarShapeList
Assembly: DesignData.SDS2.Setup.dll
Syntax
public class RoundBarShapeList : IEnumerable<RoundBarShape>, IEnumerable
Constructors
RoundBarShapeList()
Declaration
public RoundBarShapeList()
RoundBarShapeList(RoundBarShapeList)
Declaration
public RoundBarShapeList(RoundBarShapeList other)
Parameters
RoundBarShapeList(IEnumerable<RoundBarShape>)
Declaration
public RoundBarShapeList(IEnumerable<RoundBarShape> c)
Parameters
RoundBarShapeList(IEnumerable)
Declaration
public RoundBarShapeList(IEnumerable c)
Parameters
RoundBarShapeList(int)
Declaration
public RoundBarShapeList(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 RoundBarShape this[int index] { get; set; }
Parameters
Type |
Name |
Description |
int |
index |
|
Property Value
Methods
Add(RoundBarShape)
Declaration
public void Add(RoundBarShape x)
Parameters
AddRange(RoundBarShapeList)
Declaration
public void AddRange(RoundBarShapeList values)
Parameters
Clear()
Declaration
CopyTo(RoundBarShape[])
Declaration
public void CopyTo(RoundBarShape[] array)
Parameters
CopyTo(RoundBarShape[], int)
Declaration
public void CopyTo(RoundBarShape[] array, int arrayIndex)
Parameters
CopyTo(int, RoundBarShape[], int, int)
Declaration
public void CopyTo(int index, RoundBarShape[] array, int arrayIndex, int count)
Parameters
~RoundBarShapeList()
Declaration
protected ~RoundBarShapeList()
GetEnumerator()
Declaration
public RoundBarShapeList.RoundBarShapeListEnumerator GetEnumerator()
Returns
GetRange(int, int)
Declaration
public RoundBarShapeList GetRange(int index, int count)
Parameters
Type |
Name |
Description |
int |
index |
|
int |
count |
|
Returns
Insert(int, RoundBarShape)
Declaration
public void Insert(int index, RoundBarShape x)
Parameters
InsertRange(int, RoundBarShapeList)
Declaration
public void InsertRange(int index, RoundBarShapeList 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(RoundBarShape, int)
Declaration
public static RoundBarShapeList Repeat(RoundBarShape 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, RoundBarShapeList)
Declaration
public void SetRange(int index, RoundBarShapeList values)
Parameters
ToArray()
Declaration
public RoundBarShape[] ToArray()
Returns
Implements