IInheritanceService.AddInheritedComponents(IComponent, IContainer) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Searches the specified component for fields that implement the IComponent interface and adds each to the specified container, storing the inheritance level of each which can be retrieved using the GetInheritanceAttribute(IComponent) method.
public:
void AddInheritedComponents(System::ComponentModel::IComponent ^ component, System::ComponentModel::IContainer ^ container);
public void AddInheritedComponents (System.ComponentModel.IComponent component, System.ComponentModel.IContainer container);
abstract member AddInheritedComponents : System.ComponentModel.IComponent * System.ComponentModel.IContainer -> unit
Public Sub AddInheritedComponents (component As IComponent, container As IContainer)
Parameters
- component
- IComponent
The IComponent to search. Searching begins with this component.
- container
- IContainer
The IContainer to add components to.
Remarks
This method searches the specified component for any fields that implement the IComponent, adds each to the specified container, and stores an InheritanceAttribute for each. The InheritanceAttribute for a component indicates whether the field is inherited from a base class and can be retrieved using the GetInheritanceAttribute method.