InheritanceService::AddInheritedComponents Method (Type^, IComponent^, IContainer^)

 

Adds the components of the specified type that are inherited by the specified component to the InheritanceService.

Namespace:   System.ComponentModel.Design
Assembly:  System.Design (in System.Design.dll)

protected:
virtual void AddInheritedComponents(
	Type^ type,
	IComponent^ component,
	IContainer^ container
)

Parameters

type
Type: System::Type^

The base type to search for.

component
Type: System.ComponentModel::IComponent^

The component to search for inherited components to add to the specified container.

container
Type: System.ComponentModel::IContainer^

The container to add the inherited components to.

This method searches all the fields of all base classes of component. Each field that implements IComponent is added to an internal list that stores an InheritanceAttribute that identifies the inheritance level of the component. The component is then added to the specified container.

.NET Framework
Available since 1.1
Return to top
Show: