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