IInheritanceService.GetInheritanceAttribute(IComponent) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指定组件的继承特性。
public:
System::ComponentModel::InheritanceAttribute ^ GetInheritanceAttribute(System::ComponentModel::IComponent ^ component);
public System.ComponentModel.InheritanceAttribute GetInheritanceAttribute (System.ComponentModel.IComponent component);
abstract member GetInheritanceAttribute : System.ComponentModel.IComponent -> System.ComponentModel.InheritanceAttribute
Public Function GetInheritanceAttribute (component As IComponent) As InheritanceAttribute
参数
- component
- IComponent
要为其检索继承特性的 IComponent。
返回
一个 InheritanceAttribute 的实例,用于描述指定组件的继承级别。
注解
如果组件已由 AddInheritedComponents 方法分析,则此方法返回值 InheritanceAttribute.NotInherited。 否则,它将返回此组件的继承属性。
在尝试获取InheritanceAttribute反映指定组件的继承级别的 之前,应对指定组件或指定组件的父级调用 AddInheritedComponents 。