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