Class TfTypeVector
Namespace: pxr
Syntax
public class TfTypeVector : IDisposable, IEnumerable<TfType>, IEnumerable
Constructors
TfTypeVector()
Declaration
TfTypeVector(TfTypeVector)
Declaration
public TfTypeVector(TfTypeVector other)
Parameters
TfTypeVector(ICollection)
Declaration
public TfTypeVector(ICollection c)
Parameters
TfTypeVector(Int32)
Declaration
public TfTypeVector(int capacity)
Parameters
Type |
Name |
Description |
Int32 |
capacity |
|
Fields
swigCMemOwn
Declaration
protected bool swigCMemOwn
Field Value
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
Item[Int32]
Declaration
public TfType this[int index] { get; set; }
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Property Value
Methods
Add(TfType)
Declaration
public void Add(TfType x)
Parameters
Type |
Name |
Description |
TfType |
x |
|
AddRange(TfTypeVector)
Declaration
public void AddRange(TfTypeVector values)
Parameters
Clear()
Declaration
CopyTo(TfType[])
Declaration
public void CopyTo(TfType[] array)
Parameters
Type |
Name |
Description |
TfType[] |
array |
|
CopyTo(TfType[], Int32)
Declaration
public void CopyTo(TfType[] array, int arrayIndex)
Parameters
CopyTo(Int32, TfType[], Int32, Int32)
Declaration
public void CopyTo(int index, TfType[] array, int arrayIndex, int count)
Parameters
Dispose()
Declaration
public virtual void Dispose()
Implements
Finalize()
Declaration
protected void Finalize()
GetEnumerator()
Declaration
public TfTypeVector.TfTypeVectorEnumerator GetEnumerator()
Returns
GetRange(Int32, Int32)
Declaration
public TfTypeVector GetRange(int index, int count)
Parameters
Returns
Insert(Int32, TfType)
Declaration
public void Insert(int index, TfType x)
Parameters
InsertRange(Int32, TfTypeVector)
Declaration
public void InsertRange(int index, TfTypeVector values)
Parameters
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
Type |
Name |
Description |
Int32 |
index |
|
RemoveRange(Int32, Int32)
Declaration
public void RemoveRange(int index, int count)
Parameters
Repeat(TfType, Int32)
Declaration
public static TfTypeVector Repeat(TfType value, int count)
Parameters
Returns
Reverse()
Declaration
Reverse(Int32, Int32)
Declaration
public void Reverse(int index, int count)
Parameters
SetRange(Int32, TfTypeVector)
Declaration
public void SetRange(int index, TfTypeVector values)
Parameters
Explicit Interface Implementations
IEnumerable<TfType>.GetEnumerator()
Declaration
IEnumerator<TfType> IEnumerable<TfType>.GetEnumerator()
Returns
Implements
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Implements