IInheritanceService.AddInheritedComponents(IComponent, IContainer) 方法

定义

在指定的组件中搜索实现 IComponent 接口的字段,并将它们逐一添加到指定的容器,同时存储它们的继承级别,继承级别可以使用 GetInheritanceAttribute(IComponent) 方法检索。

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)

参数

component
IComponent

要搜索的 IComponent。 从这个组件开始搜索。

container
IContainer

要向其添加组件的 IContainer

注解

此方法在指定组件中搜索实现 IComponent的任何字段,将每个字段添加到指定的容器,并为每个字段存储 。InheritanceAttribute 组件的 指示 InheritanceAttribute 字段是否继承自基类,并且可以使用 方法进行 GetInheritanceAttribute 检索。

适用于