ImageKeyConverter.GetStandardValuesExclusive(ITypeDescriptorContext) 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.
Determines whether the list of standard values for the ImageKeyConverter is exclusive (that is, whether it allows values other than those returned by 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
Parameters
- context
- ITypeDescriptorContext
An ITypeDescriptorContext that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be null
.
Returns
true
to indicate the list does not allow additional values; otherwise, false
. Always returns true
.
Remarks
If the list returned by the GetStandardValues method is exclusive, no other values are valid. This is typical of an enumerated data type. If the list is not exclusive, there are other valid values besides the list of standard values that GetStandardValues provides.
As implemented in this type converter, this method always returns true
.
Typically, you should call the GetStandardValuesSupported method before you attempt to use the GetStandardValues and GetStandardValuesExclusive methods.