Microsoft DirectX 8.0 |
Represents a collection of ComponentType objects.
Method or Property Name Description Add Append the ComponentType to the collection. Clone Create a copy of this collection. Count Number of items in the collection. Item Get the ComponentType at the specified index. Remove Clear the collection.
Append the ComponentType to the collection.
Syntax
ComponentTypes.Add(ComponentType)
Parameters
ComponentType The ComponentType object to add to the collection.
Return Value
If successful, returns the index value of the newly-added object.
Remarks
See Also
Create a new copy of this object.
Syntax
ComponentTypes.Clone
Number of items in the collection.
Syntax
ComponentTypes.Count
Remarks
This property is read only.
See Also
Get the ComponentType at the specified index.
Syntax
ComponentTypes.Item(Index,ComponentType)
Parameters
Index Index of the ComponentType object in the collection.
Possible Values
Returns a ComponentType object.
Remarks
This property is read-write.
See Also
Clear the collection.
Syntax
ComponentTypes.Remove(Index)
Parameters
Index Index of the ComponentType object to remove.
Return Value
Remarks
See Also