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.Remove

Removes a component from the Container.

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

Parameters

component
The component to remove.

Return Value

None.

Remarks

This method can be overridden by a derived class.

See Also

Container Class | Container Members | System.ComponentModel Namespace | Add