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!

InheritanceService.AddInheritedComponents (IComponent, IContainer)

This method walks all the fields of all base classes of component. Each field that implements IComponent is added to the given container.

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

Parameters

component
The component to search. This will begin searching with this component's class.
container
The container to add inherited components to.

See Also

InheritanceService Class | InheritanceService Members | System.ComponentModel.Design Namespace | InheritanceService.AddInheritedComponents Overload List | IInheritanceService