NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Container.Add (IComponent)

Adds the specified component to the Container. The component is unnamed.

[Visual Basic]
Overloads Overridable Public Sub Add( _
   ByVal component As IComponent _
)
[C#]
public virtual void Add(
   IComponent component
);
[C++]
public: virtual void Add(
   IComponent* component
);
[JScript]
public function Add(
   component : IComponent
);

Parameters

component
The component to add.

Return Value

None.

Remarks

This method can be overridden by a derived class.

The components in a container are tracked in a first-in-first-out list, which also defines the order of the components within the container. The new component is added to the end of the list.

See Also

Container Class | Container Members | System.ComponentModel Namespace | Container.Add Overload List | Remove