ImageIndexConverter.GetStandardValuesExclusive(ITypeDescriptorContext) 方法

定义

确定从 GetStandardValues 方法返回的标准值列表是否为唯一列表。

public:
 override bool GetStandardValuesExclusive(System::ComponentModel::ITypeDescriptorContext ^ context);
public override bool GetStandardValuesExclusive (System.ComponentModel.ITypeDescriptorContext context);
public override bool GetStandardValuesExclusive (System.ComponentModel.ITypeDescriptorContext? context);
override this.GetStandardValuesExclusive : System.ComponentModel.ITypeDescriptorContext -> bool
Public Overrides Function GetStandardValuesExclusive (context As ITypeDescriptorContext) As Boolean

参数

context
ITypeDescriptorContext

格式化程序上下文。

返回

如果 GetStandardValues 方法返回有效值的独占列表,则为 true;否则为 false。 此实现始终返回 false

注解

如果 方法返回 GetStandardValues 的列表是独占的,则其他任何值都无效。 这是枚举数据类型的典型。 如果列表不独占,则除了提供的标准值列表之外,还有其他有效值 GetStandardValues

如此类型转换器中实现的那样,此方法始终返回 false

通常,在GetStandardValuesSupported尝试使用 和 GetStandardValuesExclusive 方法之前,GetStandardValues将调用 方法。

适用于

另请参阅