Returns whether the collection of standard values returned from System.ComponentModel.TypeConverter.GetStandardValues() is an exclusive list of possible values, using the specified context.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public override bool GetStandardValuesExclusive(
	ITypeDescriptorContext context
)
Visual Basic
Public Overrides Function GetStandardValuesExclusive ( 
	context As ITypeDescriptorContext
) As Boolean
Visual C++
public:
virtual bool GetStandardValuesExclusive(
	ITypeDescriptorContext^ context
) override
F#
abstract GetStandardValuesExclusive : 
        context : ITypeDescriptorContext -> bool 
override GetStandardValuesExclusive : 
        context : ITypeDescriptorContext -> bool 

Parameters

context
Type: System.ComponentModel..::..ITypeDescriptorContext
An System.ComponentModel.ITypeDescriptorContext that provides a format context.

Return Value

Type: Boolean
true if the System.ComponentModel.TypeConverter.StandardValuesCollection returned from System.ComponentModel.TypeConverter.GetStandardValues() is an exhaustive list of possible values; false if other values are possible.

See Also